svn commit: r368658 - head/irc/ircd-ratbox
Rodrigo Osorio
rodrigo at FreeBSD.org
Sat Sep 20 16:08:02 UTC 2014
Author: rodrigo
Date: Sat Sep 20 16:08:01 2014
New Revision: 368658
URL: http://svnweb.freebsd.org/changeset/ports/368658
QAT: https://qat.redports.org/buildarchive/r368658/
Log:
OptionsNG conversion brokes few options making
them available by default. Also added MAKE_JOBS_UNSAFE
to avoid intermittent build failures.
PR: ports/181481
Submitted by: John Marshall <John.Marshall at riverwillow.com.au>
Approved by: bapt (mentor)
Modified:
head/irc/ircd-ratbox/Makefile
Modified: head/irc/ircd-ratbox/Makefile
==============================================================================
--- head/irc/ircd-ratbox/Makefile Sat Sep 20 16:07:36 2014 (r368657)
+++ head/irc/ircd-ratbox/Makefile Sat Sep 20 16:08:01 2014 (r368658)
@@ -3,7 +3,7 @@
PORTNAME= ircd-ratbox
PORTVERSION= 3.0.8
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= irc ipv6
MASTER_SITES= http://www.ratbox.org/download/ \
http://www.ratbox.org/download/old/
@@ -21,6 +21,8 @@ USE_RC_SUBR= ircd-ratbox
USE_SQLITE= 3
USE_LDCONFIG= ${PREFIX}/lib/ircd-ratbox
+MAKE_JOBS_UNSAFE= yes
+
USERS= ircd
GROUPS= ${USERS}
@@ -72,15 +74,21 @@ CONFIGURE_ARGS+= --disable-openssl
.endif
.if ${PORT_OPTIONS:MIPV6}
+CONFIGURE_ARGS+= --enable-ipv6
+.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if ${PORT_OPTIONS:MZIPLINKS}
+CONFIGURE_ARGS+= --enable-zlib
+.else
CONFIGURE_ARGS+= --disable-zlib
.endif
.if ${PORT_OPTIONS:MSHARED_MODS}
-CONFIGURE_ARGS+= --disable-shared-modules
+CONFIGURE_ARGS+= --disable-static
+.else
+CONFIGURE_ARGS+= --enable-static
.endif
.if ${PORT_OPTIONS:MASSERT}
More information about the svn-ports-all
mailing list