svn commit: r305382 - head/archivers/gzip

Eitan Adler eadler at FreeBSD.org
Sat Oct 6 16:10:54 UTC 2012


Author: eadler
Date: Sat Oct  6 16:10:53 2012
New Revision: 305382
URL: http://svn.freebsd.org/changeset/ports/305382

Log:
  Convert to OptionsNG
  
  Approved by:	gabor (maintainer)

Modified:
  head/archivers/gzip/Makefile

Modified: head/archivers/gzip/Makefile
==============================================================================
--- head/archivers/gzip/Makefile	Sat Oct  6 16:06:39 2012	(r305381)
+++ head/archivers/gzip/Makefile	Sat Oct  6 16:10:53 2012	(r305382)
@@ -24,11 +24,12 @@ INFO=	gzip
 DOC_FILES=	AUTHORS COPYING ChangeLog ChangeLog-2007 INSTALL NEWS README \
 		THANKS TODO
 
-OPTIONS=	RSYNCABLE	"Include --rsyncable patch"	OFF
+OPTIONS_DEFINE=	RSYNCABLE
+RSYNCABLE_DESC=	Include --rsyncable patch
 
 .include <bsd.port.pre.mk>
 
-.if defined(WITH_RSYNCABLE)
+.if ${PORT_OPTIONS:MRSYNCABLE}
 EXTRA_PATCHES=	${FILESDIR}/extra-patch-gzip-rsyncable.diff
 .endif
 



More information about the svn-ports-all mailing list