diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-17 02:15:13 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-17 02:15:13 +0000 |
commit | 3bdf701a5c55426eb679205359bb384d7019a1a2 (patch) | |
tree | 2462f02d26b3d6c876b0b158f0a6aa557f06a219 /net/icpld | |
parent | 87b9f8cbd167accbbbbcf020b1dfed71e5f93278 (diff) | |
download | ports-3bdf701a5c55426eb679205359bb384d7019a1a2.tar.gz ports-3bdf701a5c55426eb679205359bb384d7019a1a2.zip |
Notes
Diffstat (limited to 'net/icpld')
-rw-r--r-- | net/icpld/Makefile | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/net/icpld/Makefile b/net/icpld/Makefile index 1cd7eafe760a..cf8bbd49219f 100644 --- a/net/icpld/Makefile +++ b/net/icpld/Makefile @@ -1,12 +1,9 @@ -# New ports collection makefile for: icpld -# Date created: 04.01.2004 -# Whom: krion@FreeBSD.org -# +# Created by: krion@FreeBSD.org # $FreeBSD$ -# PORTNAME= icpld PORTVERSION= 1.1.5 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.ibiblio.org/icpld/download/ \ http://freebsd.unixfreunde.de/sources/ @@ -23,11 +20,11 @@ MAN1= ${PORTNAME}.1 PORTDOCS= README PLIST_FILES= bin/icpld etc/icpld.conf.sample etc/rc.d/icpld.sh.sample -OPTIONS= IPV6 "IPv6 internet support" off \ +OPTIONS_DEFINE= IPV6 DOCS -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_IPV6) +.if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 @@ -42,11 +39,11 @@ do-install: ${INSTALL_SCRIPT} ${WRKSRC}/contrib/icpld.sh.sample ${PREFIX}/etc/rc.d post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for i in README ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} .endfor .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |