diff options
author | rodrigo <rodrigo@FreeBSD.org> | 2014-09-21 00:08:01 +0800 |
---|---|---|
committer | rodrigo <rodrigo@FreeBSD.org> | 2014-09-21 00:08:01 +0800 |
commit | 761a43b810ad44bdd99d64e1e50a8147e68b376d (patch) | |
tree | b56b74cb7b913ec4d5999de0d3c9ee7796ed112c /irc | |
parent | 86e203a19dc188df4dc7aaa6364554184fb29a0d (diff) | |
download | freebsd-ports-graphics-761a43b810ad44bdd99d64e1e50a8147e68b376d.tar.gz freebsd-ports-graphics-761a43b810ad44bdd99d64e1e50a8147e68b376d.tar.zst freebsd-ports-graphics-761a43b810ad44bdd99d64e1e50a8147e68b376d.zip |
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@riverwillow.com.au>
Approved by: bapt (mentor)
Diffstat (limited to 'irc')
-rw-r--r-- | irc/ircd-ratbox/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/irc/ircd-ratbox/Makefile b/irc/ircd-ratbox/Makefile index 313c3a0e637..d7b26e3a9dc 100644 --- a/irc/ircd-ratbox/Makefile +++ b/irc/ircd-ratbox/Makefile @@ -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} |