diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-04-17 03:05:06 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-04-17 03:05:06 +0800 |
commit | cab4985889d9612c03992d10057908222fc4a9d5 (patch) | |
tree | 08c0bb1e3a858c03511c549676d696cef7e11ea8 | |
parent | 498675ca43a9b1fc23b602982775bdb4322999b7 (diff) | |
download | marcuscom-ports-cab4985889d9612c03992d10057908222fc4a9d5.tar marcuscom-ports-cab4985889d9612c03992d10057908222fc4a9d5.tar.gz marcuscom-ports-cab4985889d9612c03992d10057908222fc4a9d5.tar.bz2 marcuscom-ports-cab4985889d9612c03992d10057908222fc4a9d5.tar.lz marcuscom-ports-cab4985889d9612c03992d10057908222fc4a9d5.tar.xz marcuscom-ports-cab4985889d9612c03992d10057908222fc4a9d5.tar.zst marcuscom-ports-cab4985889d9612c03992d10057908222fc4a9d5.zip |
Fix the dependency, avoid gnome-pty-helper depends on gnome-pty-helper to stop
my portmaster keeps reinstall gnome-pty-helper forever in loop.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15830 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | x11-toolkits/gnome-pty-helper/Makefile | 4 | ||||
-rw-r--r-- | x11-toolkits/vte3/Makefile | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/x11-toolkits/gnome-pty-helper/Makefile b/x11-toolkits/gnome-pty-helper/Makefile index 888fc4ae9..41ffe4707 100644 --- a/x11-toolkits/gnome-pty-helper/Makefile +++ b/x11-toolkits/gnome-pty-helper/Makefile @@ -3,7 +3,7 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom$ +# $MCom: ports/x11-toolkits/gnome-pty-helper/Makefile,v 1.1 2011/04/15 14:34:32 kwm Exp $ # PORTNAME= gnome-pty-helper @@ -11,6 +11,8 @@ PORTREVISION?= 0 COMMENT?= utmp/wtmp/lastlog helper program for the vte Terminal widget +VTE3_SLAVE= yes + MASTERDIR= ${.CURDIR}/../../x11-toolkits/vte3 WRKSRC= ${WRKDIR}/${DISTNAME}/${PORTNAME} PATCHDIR= ${.CURDIR}/files diff --git a/x11-toolkits/vte3/Makefile b/x11-toolkits/vte3/Makefile index e03d47898..576565c5f 100644 --- a/x11-toolkits/vte3/Makefile +++ b/x11-toolkits/vte3/Makefile @@ -3,7 +3,7 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/x11-toolkits/vte3/Makefile,v 1.7 2011/04/11 02:36:01 mezz Exp $ +# $MCom: ports/x11-toolkits/vte3/Makefile,v 1.8 2011/04/15 14:34:32 kwm Exp $ # PORTNAME?= vte @@ -20,8 +20,11 @@ COMMENT?= Terminal widget with improved accessibility and I18N support USE_BZIP2= yes .if !defined(REFERENCE_PORT) +VTE3_SLAVE?= no +.if ${VTE3_SLAVE}!="yes" RUN_DEPENDS+= ${LOCALBASE}/libexec/gnome-pty-helper:${PORTSDIR}/x11-toolkits/gnome-pty-helper +.endif USE_GMAKE= yes USE_BISON= build |