mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
57 lines
1.7 KiB
Makefile
57 lines
1.7 KiB
Makefile
# Created by: Jeremy C. Reed
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bind10
|
|
PORTVERSION= 1.2.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= dns
|
|
MASTER_SITES= ISC/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= mat@FreeBSD.org
|
|
COMMENT= Development version of ISC BIND 10 DNS Suite
|
|
|
|
LICENSE= ISC
|
|
LICENSE_GROUPS= FSF GPL OSI
|
|
LICENSE_NAME= ISC License
|
|
LICENSE_FILE= ${FILESDIR}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/boost/interprocess/sync/interprocess_upgradable_mutex.hpp:${PORTSDIR}/devel/boost-libs \
|
|
${LOCALBASE}/include/log4cplus/logger.h:${PORTSDIR}/devel/log4cplus \
|
|
sqlite3>=3.3.9:${PORTSDIR}/databases/sqlite3 \
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3
|
|
LIB_DEPENDS= libbotan-1.10.so:${PORTSDIR}/security/botan110 \
|
|
liblog4cplus.so:${PORTSDIR}/devel/log4cplus \
|
|
libicuuc.so:${PORTSDIR}/devel/icu \
|
|
libgmp.so:${PORTSDIR}/math/gmp \
|
|
libsqlite3.so:${PORTSDIR}/databases/sqlite3
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3
|
|
|
|
DEPRECATED= Is not developed any more, use dns/bundy
|
|
EXPIRATION_DATE= 2015-12-31
|
|
|
|
USE_OPENSSL= yes
|
|
USE_LDCONFIG= yes
|
|
USES= compiler:c++11-lang pathfix pkgconfig python:3 libtool
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --localstatedir=/var \
|
|
--without-werror \
|
|
--enable-install-configurations
|
|
|
|
PLIST_SUB+= PORTNAME=${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${MV} ${STAGEDIR}${ETCDIR}/cmdctl-certfile.pem ${STAGEDIR}${ETCDIR}/cmdctl-certfile.pem.sample
|
|
${MV} ${STAGEDIR}${ETCDIR}/cmdctl-keyfile.pem ${STAGEDIR}${ETCDIR}/cmdctl-keyfile.pem.sample
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_VER} != ${PYTHON_DEFAULT}
|
|
IGNORE= You have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|