Date: Mon, 15 Jul 2013 05:37:40 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323015 - head/cad/pcb Message-ID: <201307150537.r6F5begA054742@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307150537.r6F5begA054742>