aboutsummaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authormezz <mezz@FreeBSD.org>2011-06-30 00:12:14 +0800
committermezz <mezz@FreeBSD.org>2011-06-30 00:12:14 +0800
commitbaa63ee0d21e611aa00b5fd8b68aaf6c360a7357 (patch)
tree352942e3c93f0c002f95d11969c00460f184850c /graphics
parent64b03ff4a12e56c706dd37b210ba92538adfbea6 (diff)
downloadfreebsd-ports-gnome-baa63ee0d21e611aa00b5fd8b68aaf6c360a7357.tar.gz
freebsd-ports-gnome-baa63ee0d21e611aa00b5fd8b68aaf6c360a7357.tar.zst
freebsd-ports-gnome-baa63ee0d21e611aa00b5fd8b68aaf6c360a7357.zip
Fix the dependencies. It doesn't depend on gnome-keyring and gnomeui, because
the gnome-vfs is disabled by default without option provide as we are using gvfs instead. Tweak the gvfs option, do not use ${HAVE_GNOME:Mgvfs}!="" when the gvfs is enable by default. If it's disabled then depend on libcurl and add --without-gvfs flag to disable it corrects. Bump the PORTREVISION.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/gimp-app/Makefile13
1 files changed, 6 insertions, 7 deletions
diff --git a/graphics/gimp-app/Makefile b/graphics/gimp-app/Makefile
index 45b8bdbabd61..9cfda395f487 100644
--- a/graphics/gimp-app/Makefile
+++ b/graphics/gimp-app/Makefile
@@ -8,7 +8,7 @@
PORTNAME= gimp-app
DISTVERSION= 2.6.11
-PORTREVISION?= 2
+PORTREVISION?= 3
PORTEPOCH?= 1
CATEGORIES?= graphics gnome
MASTER_SITES= ftp://ftp.gimp.org/pub/%SUBDIR%/ \
@@ -124,12 +124,11 @@ LIB_DEPENDS+= exif.12:${PORTSDIR}/graphics/libexif
CONFIGURE_ARGS+= --without-libexif
.endif
-.if defined(WITH_GVFS) || ${HAVE_GNOME:Mgvfs}!=""
-LIB_DEPENDS+= gnome-keyring.0:${PORTSDIR}/security/gnome-keyring
-USE_GNOME+= gvfs
-. if ${HAVE_GNOME:Mlibgnomeui}!=""
-USE_GNOME+= libgnomeui
-. endif
+.if defined(WITH_GVFS)
+USE_GNOME+= gvfs
+.else
+LIB_DEPENDS+= curl.6:${PORTSDIR}/ftp/curl
+CONFIGURE_ARGS+= --without-gvfs
.endif
.if defined(WITH_HELPBROWSER)