Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 20 Sep 2014 16:08:02 +0000 (UTC)
From:      Rodrigo Osorio <rodrigo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r368658 - head/irc/ircd-ratbox
Message-ID:  <201409201608.s8KG82q6076813@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409201608.s8KG82q6076813>