973a6fb381
gtk-update-icon-cache is part of gtk+2: adding gtk+2 to run_depends just to update the icon cache (which only gtk apps can use) is overkill to say the least! As from now, each time icons are installed under %D/share/icons, we try to execute gtk-update-icon-cache and if it is not there, we just ignore the error. What it means is that if you have gtk+2 installed, then it'll run fine and your apps will be able to use the cache. Otherwise, it will silently fails which is fine since it means none of your apps would have been able to take advantage of the cache anyway. discussed with jasper@
58 lines
1.7 KiB
Makefile
58 lines
1.7 KiB
Makefile
#$OpenBSD: Makefile,v 1.16 2008/04/17 08:10:10 ajacoutot Exp $
|
|
|
|
COMMENT= Image viewer and browser for GNOME
|
|
|
|
GNOME_PROJECT= gthumb
|
|
GNOME_VERSION= 2.10.8
|
|
PKGNAME= ${DISTNAME}p0
|
|
|
|
SHARED_LIBS= gthumb 0.0 # .0.0
|
|
|
|
CATEGORIES= graphics
|
|
|
|
HOMEPAGE= http://gthumb.sourceforge.net/
|
|
|
|
MAINTAINER= Guillaume Protet <mortheres@hotpop.com>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= ICE ORBit-2 ORBitCosNaming-2 SM X11 Xau Xcomposite \
|
|
Xcursor Xdamage Xdmcp Xext Xfixes Xi Xinerama Xrandr \
|
|
Xrender Xtst Xxf86vm art_lgpl_2 atk-1.0 audiofile \
|
|
bonobo-2 bonobo-activation bonoboui-2 c cairo crypto \
|
|
dbus-1 dbus-glib-1 esd exif expat fontconfig freetype \
|
|
gailutil gconf-2 gdk-x11-2.0 gdk_pixbuf-2.0 glade-2.0 \
|
|
glib-2.0 glitz gmodule-2.0 gnome-2 gnome-keyring \
|
|
gnomecanvas-2 gnomevfs-2 gobject-2.0 gthread-2.0 \
|
|
gtk-x11-2.0 jpeg ltdl m pango-1.0 pangocairo-1.0 \
|
|
pangoft2-1.0 pcre png popt pthread ssl tiff usb util \
|
|
xml2 z
|
|
|
|
MODULES= x11/gnome devel/gettext
|
|
|
|
BUILD_DEPENDS= :gnome-doc-utils-*:x11/gnome/doc-utils
|
|
LIB_DEPENDS= gnomeui-2.>=2000::x11/gnome/libgnomeui \
|
|
gphoto2.>=3,gphoto2_port.>=6::graphics/libgphoto2
|
|
RUN_DEPENDS= ::misc/shared-mime-info \
|
|
:scrollkeeper-*:textproc/scrollkeeper \
|
|
:yelp-*:x11/gnome/yelp
|
|
|
|
DESKTOP_FILES= Yes
|
|
USE_X11= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--with-gconf-schema-file-dir=${LOCALBASE}/share/schemas/gthumb \
|
|
--disable-scrollkeeper \
|
|
--disable-schemas-install \
|
|
--disable-iptcdata \
|
|
--disable-libopenraw
|
|
|
|
.include <bsd.port.mk>
|