svn commit: r323015 - head/cad/pcb
John Marino
marino at FreeBSD.org
Mon Jul 15 05:37:40 UTC 2013
Author: marino
Date: Mon Jul 15 05:37:39 2013
New Revision: 323015
URL: http://svnweb.freebsd.org/changeset/ports/323015
Log:
cad/pcb: unbreak after USES= gmake
The makefile already had USES defined in the NLS option.
After replacing USE_GMAKE with "USES= gmake", the value of USES is
subsequently overwritten by the default-on NLS option. Change the
NLS option to USES+= to fix.
Approved by: hrs (maintainer)
Modified:
head/cad/pcb/Makefile
Modified: head/cad/pcb/Makefile
==============================================================================
--- head/cad/pcb/Makefile Mon Jul 15 05:10:59 2013 (r323014)
+++ head/cad/pcb/Makefile Mon Jul 15 05:37:39 2013 (r323015)
@@ -48,7 +48,7 @@ CONFIGURE_ARGS+= \
--enable-nls \
--with-libiconv-prefix=${LOCALBASE} \
--with-libintl-prefix=${LOCALBASE}
-USES= gettext iconv
+USES+= gettext iconv
.for L in fr nl ru
PLIST_FILES+= share/locale/${L}/LC_MESSAGES/pcb.mo
.endfor
More information about the svn-ports-head
mailing list