diff options
author | mnag <mnag@FreeBSD.org> | 2006-04-28 11:08:55 +0800 |
---|---|---|
committer | mnag <mnag@FreeBSD.org> | 2006-04-28 11:08:55 +0800 |
commit | b01c518fbf0f24a6ce607046745e7bf789064536 (patch) | |
tree | ca6ac74ce8ab0a440558f97ed77daf69d91937f7 /net/ipa_ip6fw/Makefile | |
parent | a02674ed60e3dceb00df69d1e1912b659ef376f1 (diff) | |
download | freebsd-ports-gnome-b01c518fbf0f24a6ce607046745e7bf789064536.tar.gz freebsd-ports-gnome-b01c518fbf0f24a6ce607046745e7bf789064536.tar.zst freebsd-ports-gnome-b01c518fbf0f24a6ce607046745e7bf789064536.zip |
- Update to 1.0.1
- portlint(1)
PR: 96409
Submitted by: maintainer
Diffstat (limited to 'net/ipa_ip6fw/Makefile')
-rw-r--r-- | net/ipa_ip6fw/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/net/ipa_ip6fw/Makefile b/net/ipa_ip6fw/Makefile index a7145852b634..db0685a6d630 100644 --- a/net/ipa_ip6fw/Makefile +++ b/net/ipa_ip6fw/Makefile @@ -6,14 +6,14 @@ # PORTNAME= ipa_ip6fw -PORTVERSION= 1.0 +PORTVERSION= 1.0.1 CATEGORIES= net MASTER_SITES= http://ipa-system.sourceforge.net/modules/ipa_ip6fw/ MAINTAINER= simon@comsys.ntu-kpi.kiev.ua COMMENT= IPA accounting module for FreeBSD IPv6 Firewall -NO_PACKAGE= "Needs to be built uniquely for each host" +NO_PACKAGE= Needs to be built uniquely for each host USE_BZIP2= yes @@ -23,30 +23,30 @@ OPTIONS= PTHREAD "Build pthread safe module" off \ .include <bsd.port.pre.mk> -.ifdef WITH_PTHREAD +.if defined(WITH_PTHREAD) MAKE_ENV+= WITH_PTHREAD=yes CFLAGS+= ${PTHREAD_CFLAGS} .endif -.ifdef WITHOUT_DEBUG_INFO +.if !defined(WITH_DEBUG_INFO) MAKE_ENV+= DEBUG_FLAGS="" .endif -BUILD_DEPENDS= ${PREFIX}/include/ipa_mod.h:${PORTSDIR}/sysutils/ipa +BUILD_DEPENDS+= ${PREFIX}/include/ipa_mod.h:${PORTSDIR}/sysutils/ipa PLIST_FILES= lib/ipa_ip6fw.so MANCOMPRESSED= yes MAN8= ipa_ip6fw.8 MANLANG= "" -.ifdef WITH_MAN_KOI8_R +.if defined(WITH_MAN_KOI8_R) MANLANG+= ru.KOI8-R .endif do-install: - cd ${WRKSRC} && make install -.ifdef WITH_MAN_KOI8_R - cd ${WRKSRC}/man && make LANG_DIR_SRC=ru.KOI8-R clean all install + cd ${WRKSRC} && ${MAKE} install +.if defined(WITH_MAN_KOI8_R) + cd ${WRKSRC}/man && ${MAKE} LANG_DIR_SRC=ru.KOI8-R clean all install .endif .include <bsd.port.post.mk> |