53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.10 2008/04/28 19:15:43 jakob Exp $
|
|
|
|
COMMENT= BIND 8 compatible stub resolver library
|
|
|
|
VERSION= 9.4.2
|
|
DISTNAME= bind-${VERSION}
|
|
PKGNAME= libbind-${VERSION}
|
|
SHARED_LIBS= bind 2.0
|
|
CATEGORIES= net
|
|
|
|
MASTER_SITES+= ftp://ftp.isc.org/isc/bind9/${VERSION}/ \
|
|
ftp://ftp.epix.net/pub/isc/bind9/${VERSION}/ \
|
|
ftp://ftp.nominum.com/pub/isc/bind9/${VERSION}/ \
|
|
ftp://ftp.sunet.se/pub/network/isc/bind9/${VERSION}/ \
|
|
ftp://ftp.funet.fi/pub/mirrors/ftp.isc.org/isc/bind9/${VERSION}/ \
|
|
ftp://ftp.iij.ad.jp/pub/network/isc/bind9/${VERSION}/ \
|
|
|
|
HOMEPAGE= http://www.isc.org/products/BIND/
|
|
|
|
MAINTAINER= Jakob Schlyter <jakob@openbsd.org>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WRKSRC= ${WRKDIST}/lib/bind
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-libtool \
|
|
${CONFIGURE_SHARED} \
|
|
--with-randomdev=/dev/arandom
|
|
USE_LIBTOOL= Yes
|
|
|
|
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}
|
|
|
|
FLAVORS= threads
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mthreads}
|
|
CONFIGURE_ARGS+= --enable-threads
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-threads
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/include/bind
|
|
mv ${PREFIX}/bind/include/* ${PREFIX}/include/bind
|
|
|
|
.include <bsd.port.mk>
|