diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-07-29 02:42:28 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-07-29 02:42:28 +0800 |
commit | e4c27718725fbe666d1483316d19c0902933eade (patch) | |
tree | 4ae0fda8a1cb5b69bee1f83576a3fdd246869d0a | |
parent | b66e4929fffaee8e69cecba60c80c9899973539e (diff) | |
download | marcuscom-ports-e4c27718725fbe666d1483316d19c0902933eade.tar marcuscom-ports-e4c27718725fbe666d1483316d19c0902933eade.tar.gz marcuscom-ports-e4c27718725fbe666d1483316d19c0902933eade.tar.bz2 marcuscom-ports-e4c27718725fbe666d1483316d19c0902933eade.tar.lz marcuscom-ports-e4c27718725fbe666d1483316d19c0902933eade.tar.xz marcuscom-ports-e4c27718725fbe666d1483316d19c0902933eade.tar.zst marcuscom-ports-e4c27718725fbe666d1483316d19c0902933eade.zip |
Add an additional optional dependency on py-gnome-extras needed by the
invest applet.
Noticed by: mezz
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6885 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | x11/gnome-applets/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/x11/gnome-applets/Makefile b/x11/gnome-applets/Makefile index b7bc6ea99..183b8513c 100644 --- a/x11/gnome-applets/Makefile +++ b/x11/gnome-applets/Makefile @@ -3,7 +3,7 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/x11/gnome-applets/Makefile,v 1.131 2006/07/27 05:54:02 marcus Exp $ +# $MCom: ports/x11/gnome-applets/Makefile,v 1.132 2006/07/27 20:59:12 marcus Exp $ # PORTNAME= gnome-applets @@ -87,10 +87,12 @@ PLIST_SUB+= COMMANDER="" PLIST_SUB+= COMMANDER="@comment " .endif -.if exists(${pygnomedesktop_DETECT}) || ( ${HAVE_GNOME:Mpygnomedesktop}!="" && ${ARCH}!="sparc64" ) +.if ( exists(${pygnomedesktop_DETECT}) && exists(${pygnomeextras_DETECT}) ) || \ + ( ( ${HAVE_GNOME:Mpygnomedesktop}!="" && \ + ${HAVE_GNOME:Mpygnomeextras}!="" ) && ${ARCH}!="sparc64" ) USE_PYTHON= yes .include "${PORTSDIR}/Mk/bsd.python.mk" -USE_GNOME+= pygnomedesktop +USE_GNOME+= pygnomedesktop pygnomeextras PLIST_SUB+= PYTHON="" .else PLIST_SUB+= PYTHON="@comment " |