diff options
author | Rodrigo Osorio <rodrigo@FreeBSD.org> | 2014-09-20 16:08:01 +0000 |
---|---|---|
committer | Rodrigo Osorio <rodrigo@FreeBSD.org> | 2014-09-20 16:08:01 +0000 |
commit | f566039c138ceb204b464935a4148af0449bb5c8 (patch) | |
tree | b56b74cb7b913ec4d5999de0d3c9ee7796ed112c | |
parent | 530a8eab4844ef91689f8f88de2f200e247d3e7b (diff) |
Notes
-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 313c3a0e6373..d7b26e3a9dc0 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} |