openbsd-ports/net/libbind/Makefile

53 lines
1.2 KiB
Makefile
Raw Normal View History

2008-04-28 15:15:43 -04:00
# $OpenBSD: Makefile,v 1.10 2008/04/28 19:15:43 jakob Exp $
COMMENT= BIND 8 compatible stub resolver library
2008-04-28 15:15:43 -04:00
VERSION= 9.4.2
DISTNAME= bind-${VERSION}
2008-04-28 15:15:43 -04:00
PKGNAME= libbind-${VERSION}
2006-01-03 12:16:18 -05:00
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>
2008-04-28 15:15:43 -04:00
# 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
2006-01-03 12:16:18 -05:00
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>