Date: Wed, 11 Sep 2013 00:48:44 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326938 - in head/security/fwbuilder: . files Message-ID: <201309110048.r8B0miMo045128@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Wed Sep 11 00:48:44 2013 New Revision: 326938 URL: http://svnweb.freebsd.org/changeset/ports/326938 Log: On installations that have devel/rcs (GNU rcs) installed, fwbuilder fails to check in udates to its .fwb files (they are saved but not checked into its RCS database). This patch prefers rcs in base (/usr/bin/rcs) over GNU rcs (/usr/local/bin/rcs). Added: head/security/fwbuilder/files/patch-configure.in (contents, props changed) Modified: head/security/fwbuilder/Makefile Modified: head/security/fwbuilder/Makefile ============================================================================== --- head/security/fwbuilder/Makefile Tue Sep 10 23:09:23 2013 (r326937) +++ head/security/fwbuilder/Makefile Wed Sep 11 00:48:44 2013 (r326938) @@ -8,7 +8,7 @@ PORTNAME= fwbuilder DISTVERSION= 5.1.0 PORTVERSION= ${DISTVERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security BUILD= 3599 # XXX in developement version of this port: PKGNAMESUFFIX= -devel Added: head/security/fwbuilder/files/patch-configure.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/fwbuilder/files/patch-configure.in Wed Sep 11 00:48:44 2013 (r326938) @@ -0,0 +1,11 @@ +--- configure.in.orig 2012-03-22 23:10:54.000000000 -0700 ++++ configure.in 2013-09-10 11:30:35.546998176 -0700 +@@ -57,7 +57,7 @@ + fi + + # TODO: do we need to add $QTDIR/bin to PATH to find qmake? +-EXTENDED_PATH="/usr/local/bin:$PATH" ++EXTENDED_PATH="$PATH:/usr/local/bin" + + AC_ARG_WITH(qmake, [ --with-qmake=qmake Specify the qmake to be used (debian qmake-qt4) ]) + if test -n "$with_qmake"; then
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309110048.r8B0miMo045128>