1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

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.
This commit is contained in:
Jeremy Messenger 2011-06-29 16:12:14 +00:00
parent 26cbfea477
commit b5c7fd06f1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=276674

View File

@ -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)