From owner-svn-ports-head@FreeBSD.ORG Mon Jul 15 05:37:40 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 534AC9CF; Mon, 15 Jul 2013 05:37:40 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 459BB99B; Mon, 15 Jul 2013 05:37:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6F5bemi054743; Mon, 15 Jul 2013 05:37:40 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6F5begA054742; Mon, 15 Jul 2013 05:37:40 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201307150537.r6F5begA054742@svn.freebsd.org> From: John Marino Date: Mon, 15 Jul 2013 05:37:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323015 - head/cad/pcb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jul 2013 05:37:40 -0000 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