diff options
author | swills <swills@FreeBSD.org> | 2011-04-11 12:11:41 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2011-04-11 12:11:41 +0800 |
commit | 0b44f2ceaf1d8811eba55164af0f7c5094a6e906 (patch) | |
tree | 4539674b529a34b00e5f4477201b9ea148dc8ec4 /net/beacon/Makefile | |
parent | f601ef70e05fb7a64f4a2e88a4cf74e489b74f85 (diff) | |
download | freebsd-ports-gnome-0b44f2ceaf1d8811eba55164af0f7c5094a6e906.tar.gz freebsd-ports-gnome-0b44f2ceaf1d8811eba55164af0f7c5094a6e906.tar.zst freebsd-ports-gnome-0b44f2ceaf1d8811eba55164af0f7c5094a6e906.zip |
- Update to 1.4
- Fix MASTER_SITES
- Update home page to SF site since previous page doesn't respond
- Use included rc script
- Remove patches included upstream
- Remove unneeded 'CONFIGURE_ARGS='
- Don't unnecessarily include bsd.port.pre.mk/bsd.port.post.mk
- Remove messages about config files. pkg-message could be used, but
isn't necessary
PR: ports/154519
Approved by: maintainer timeout
Diffstat (limited to 'net/beacon/Makefile')
-rw-r--r-- | net/beacon/Makefile | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/net/beacon/Makefile b/net/beacon/Makefile index c3285585a4b3..b690085f3f74 100644 --- a/net/beacon/Makefile +++ b/net/beacon/Makefile @@ -6,10 +6,9 @@ # PORTNAME= beacon -PORTVERSION= 1.3 -PORTREVISION= 4 +PORTVERSION= 1.4 CATEGORIES= net perl5 mbone ipv6 -MASTER_SITES= http://dast.nlanr.net/Projects/Beacon/releases/ +MASTER_SITES= SF/multicastbeacon/multicastbeacon/beacon%20v${PORTVERSION} MAINTAINER= janos.mohacsi@bsd.hu COMMENT= Beacon active measurement tool to monitor multicast @@ -21,25 +20,18 @@ WWW_DIR?= ${PREFIX}/www/ PLIST_SUB+= VERSION=${PORTVERSION} USE_PERL5= yes USE_AUTOTOOLS= autoconf -USE_RC_SUBR= beacon -.ifdef(WITHOUT_IPV6) -CONFIGURE_ARGS= -.else -#enable IPv6 name lookup, and sending IPv6 multicast +OPTIONS= IPV6 "Enable IPv6 PTR lookups" off + +.ifdef(WITH_IPV6) BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Socket6.pm:${PORTSDIR}/net/p5-Socket6 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_beacon.in CONFIGURE_ARGS+= --enable-ipv6 .endif -.include <bsd.port.pre.mk> - post-install: - @${ECHO} "Sample config installed at ${PREFIX}/etc/beacon.conf.sample" - @${ECHO} "Copy the customised version to ${PREFIX}/etc/beacon.conf" .ifndef(NOPORTDOCS) @${MKDIR} ${DOCSDIR}/ @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/ .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |