diff options
author | Simon L. B. Nielsen <simon@FreeBSD.org> | 2005-12-13 21:16:18 +0000 |
---|---|---|
committer | Simon L. B. Nielsen <simon@FreeBSD.org> | 2005-12-13 21:16:18 +0000 |
commit | 1fe3abf60d59c8b618873163aec7ad092a0f9725 (patch) | |
tree | 4f8d5827735e5d93a54f9032524c4698f1fca481 /devel/libisc/files/patch-Makefile | |
parent | - assign maintainer to perl@ (diff) |
Add libisc port:
libisc is C utility library which is used as part of part of ISC's bind.
It includes functions for:
- assertion handling.
- balanced binary (AVL) trees.
- bit masks comparison.
- event based programs.
- heap-based priority queues.
- memory handling.
- program logging.
Reviewed by: erwin
Diffstat (limited to 'devel/libisc/files/patch-Makefile')
-rw-r--r-- | devel/libisc/files/patch-Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/devel/libisc/files/patch-Makefile b/devel/libisc/files/patch-Makefile new file mode 100644 index 000000000000..83d7729c3e4b --- /dev/null +++ b/devel/libisc/files/patch-Makefile @@ -0,0 +1,40 @@ +--- /dev/null Fri Nov 25 23:55:00 2005 ++++ lib/bind/freebsdportisc/Makefile Fri Nov 25 23:57:32 2005 +@@ -0,0 +1,37 @@ ++# $FreeBSD$ ++.PATH: ${.CURDIR}/../isc ${.CURDIR}/../include/isc ++ ++LIB= isc ++ ++SRCS= assertions.c base64.c bitncmp.c ctl_clnt.c ctl_p.c \ ++ ctl_srvr.c ev_connects.c ev_files.c ev_streams.c \ ++ ev_timers.c ev_waits.c eventlib.c heap.c hex.c logging.c \ ++ memcluster.c movefile.c tree.c ++ ++INCS= assertions.h ctl.h dst.h eventlib.h heap.h irpmarshall.h \ ++ list.h logging.h memcluster.h misc.h tree.h ++ ++SHLIB_MAJOR=1 ++ ++LIBDIR= ${PREFIX}/lib ++MANDIR= ${PREFIX}/man/man ++INCSDIR= ${PREFIX}/include/isc ++ ++MAN= assertions.3 eventlib.3 logging.3 tree.3 \ ++ bitncmp.3 heap.3 memcluster.3 ++ ++# Not elegant, but it works ++.for mp in ${MAN} ++${mp}: ++ ln -s ${.CURDIR}/../isc/${mp:S/.3/.mdoc/} ${mp} ++.endfor ++ ++top_builddir = BSD/ports/libisc/work/bind-9.3.1/lib/bind ++ ++CFLAGS+= -I${.CURDIR}/../include -I${.CURDIR}/.. \ ++ -I${.CURDIR}/../port/freebsd/include ++ ++beforeinstall: ++ test -d ${INCSDIR} || mkdir ${INCSDIR} ++ ++.include <bsd.lib.mk> |