svn commit: r306187 - head/editors/nano

Eitan Adler eadler at FreeBSD.org
Sat Oct 20 15:16:21 UTC 2012


Author: eadler
Date: Sat Oct 20 15:16:20 2012
New Revision: 306187
URL: http://svn.freebsd.org/changeset/ports/306187

Log:
  Convert to OptionsNG
  
  Feature safe:	yes

Modified:
  head/editors/nano/Makefile

Modified: head/editors/nano/Makefile
==============================================================================
--- head/editors/nano/Makefile	Sat Oct 20 15:13:06 2012	(r306186)
+++ head/editors/nano/Makefile	Sat Oct 20 15:16:20 2012	(r306187)
@@ -19,7 +19,7 @@ MAKE_JOBS_SAFE=	yes
 
 LICENSE=	GPLv3
 
-.if !defined(WITHOUT_NLS)
+.if ${PORT_OPTIONS:MNLS}
 USE_GETTEXT=	yes
 PLIST_SUB+=	NLS=""
 MANLANG=	"" fr
@@ -28,7 +28,7 @@ CONFIGURE_ARGS+=--disable-nls
 PLIST_SUB+=	NLS="@comment "
 .endif
 
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
 MAKE_ARGS+=	install_htmlmanDATA=install-htmlmanDATA
 .else
 MAKE_ARGS+=	install_htmlmanDATA=""


More information about the svn-ports-all mailing list