diff options
author | obache <obache@pkgsrc.org> | 2011-04-15 08:34:00 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-04-15 08:34:00 +0000 |
commit | 680f6eb30c0f583456911fa71c29d36444b51e28 (patch) | |
tree | 67c5928c076152fed5d3d543ca3cfeabd48eec6f /net/mping/Makefile | |
parent | adc98db9bb1e46a864132dd99855cdd6506a67c2 (diff) | |
download | pkgsrc-680f6eb30c0f583456911fa71c29d36444b51e28.tar.gz |
Use USE_FEATURES=inet6 for requirement of IPv6 support, instead of unusual usage
of PKG_OPTIONS.
Diffstat (limited to 'net/mping/Makefile')
-rw-r--r-- | net/mping/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/net/mping/Makefile b/net/mping/Makefile index ffd02b82805..ff7e591851d 100644 --- a/net/mping/Makefile +++ b/net/mping/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2009/03/21 16:01:26 darcy Exp $ +# $NetBSD: Makefile,v 1.5 2011/04/15 08:34:00 obache Exp $ DISTNAME= mping-2.01 CATEGORIES= net @@ -11,15 +11,12 @@ COMMENT= Mping network statistics collector PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes +USE_FEATURES+= inet6 + INSTALLATION_DIRS= sbin ${PKGMANDIR}/man8 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/mping ${DESTDIR}${PREFIX}/sbin/mping ${INSTALL_MAN} ${WRKSRC}/man/mping.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8 -PKG_OPTIONS_VAR= PKG_OPTIONS.mping -PKG_OPTIONS_REQUIRED_GROUPS= inet6 # require inet6 capability -PKG_OPTIONS_GROUP.inet6= inet6 - -.include "../../mk/bsd.options.mk" .include "../../mk/bsd.pkg.mk" |