diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2012-11-09 05:35:17 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2012-11-09 05:35:17 +0800 |
commit | 17947af04b60b684e2dfd8716e5d07a141e7be3b (patch) | |
tree | 61a8f32984b3c0a9105c21fc5980c761ab0ed2c7 | |
parent | ce31ae80c1d32ce9b504f67bde8e800c46724d1a (diff) | |
download | freebsd-ports-gnome-17947af04b60b684e2dfd8716e5d07a141e7be3b.tar.gz freebsd-ports-gnome-17947af04b60b684e2dfd8716e5d07a141e7be3b.tar.zst freebsd-ports-gnome-17947af04b60b684e2dfd8716e5d07a141e7be3b.zip |
Import an upstream patch to fix build with ccache and nullfs. While here trim
Makefile header.
PR: 173440
Approved by: itetcu (maintainer)
Feature safe: yes
-rw-r--r-- | ports-mgmt/tinderbox-devel/Makefile | 7 | ||||
-rw-r--r-- | ports-mgmt/tinderbox-devel/files/patch-lib__tinderlib.sh | 28 |
2 files changed, 30 insertions, 5 deletions
diff --git a/ports-mgmt/tinderbox-devel/Makefile b/ports-mgmt/tinderbox-devel/Makefile index 95e6d9e2d925..8526c7a94a20 100644 --- a/ports-mgmt/tinderbox-devel/Makefile +++ b/ports-mgmt/tinderbox-devel/Makefile @@ -1,12 +1,9 @@ -# Ports collection makefile for: misc/tinderbox -# Whom: Edwin Groothuis <edwin@mavetju.org> -# Date created: 31 december 2005 -# +# Created by: Edwin Groothuis <edwin@mavetju.org> # $FreeBSD$ PORTNAME= tinderbox DISTVERSION= 3.4${SNAP} -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= ports-mgmt MASTER_SITES= http://tinderbox.marcuscom.com/ \ diff --git a/ports-mgmt/tinderbox-devel/files/patch-lib__tinderlib.sh b/ports-mgmt/tinderbox-devel/files/patch-lib__tinderlib.sh new file mode 100644 index 000000000000..7821348a339d --- /dev/null +++ b/ports-mgmt/tinderbox-devel/files/patch-lib__tinderlib.sh @@ -0,0 +1,28 @@ +--- ./lib/tinderlib.sh.orig 2012-11-07 10:17:43.000000000 +0100 ++++ ./lib/tinderlib.sh 2012-11-07 10:18:27.000000000 +0100 +@@ -23,7 +23,7 @@ + # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # +-# $MCom: portstools/tinderbox/lib/tinderlib.sh,v 1.55.2.9 2012/04/04 10:38:41 beat Exp $ ++# $MCom: portstools/tinderbox/lib/tinderlib.sh,v 1.55.2.10 2012/05/21 01:19:28 marcus Exp $ + # + + tinderLocJail () { +@@ -225,6 +225,7 @@ + requestMount () { + # set up defaults + _type="" ++ _options="" + _srcloc="" + _dstloc="" + _nullfs=0 +@@ -632,7 +633,7 @@ + + for r in ${reqs} ; do + if [ "${use_pkgng}" = "yes" ]; then +- if [ -z $(pkg info -qgO ${r}) ]; then ++ if [ -z $(pkg info -q ${r}) ]; then + missing="${missing} ${r}" + error=1 + fi |