1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Add option to enable ipv6 on 5.X

PR:		ports/70059
Submitted by:	Michael Johnson
Approved by:	maintainer
This commit is contained in:
Volker Stolz 2004-08-18 07:41:13 +00:00
parent b48aee57e8
commit 3986ae1fe8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=116578

View File

@ -7,7 +7,7 @@
PORTNAME= distcc
PORTVERSION= 2.16
CATEGORIES= devel
CATEGORIES= devel ipv6
MASTER_SITES= http://distcc.samba.org/ftp/distcc/
MAINTAINER= dom@helenmarks.co.uk
@ -24,7 +24,8 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
DISTCCD_PIDFILE=/var/run/distccd.pid
OPTIONS= GNOME "Build GUI monitor based on GNOME" Off \
GTK "Build GUI monitor based on GTK" Off
GTK "Build GUI monitor based on GTK" Off \
IPV6 "Enable IPV6 (not available on 4.X)" Off
.include <bsd.port.pre.mk>
@ -42,6 +43,10 @@ PLIST_SUB+= WITH_GNOME=""
PLIST_SUB+= WITH_GNOME="@comment "
.endif
.if ( ${OSVERSION} >= 500000 ) && defined(WITH_IPV6)
CONFIGURE_ARGS+= --enable-rfc2553
.endif
MAN1= distcc.1 distccd.1
DOC_FILES= AUTHORS INSTALL NEWS README \
doc/protocol-1.txt doc/status-1.txt \