1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/graphics/gthumb/Makefile
Tijl Coosemans 1f8935d509 Convert x11-toolkits/unique to "USES=libtool pathfix tar:bzip2".
Bump PORTREVISION on all dependent ports. [1]

audio/ario: USES=libtool.
audio/gmpc: USES=libtool.
audio/gnome-media: USES=libtool:keepla tar:bzip2.
audio/xfce4-mixer: USES=libtool tar:bzip2.
graphics/shotwell: Unbreak and USES=tar:xz.
science/gwyddion: USES=libtool tar:bzip2.
sysutils/mate-control-center: USES=libtool.
x11/xfce4-clipman-plugin: USES=libtool tar:bzip2.

Approved by:	portmgr (implicit) [1]
2014-05-13 11:54:53 +00:00

101 lines
3.0 KiB
Makefile

# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
# $FreeBSD$
PORTNAME= gthumb
PORTVERSION= 2.14.1
PORTREVISION= 9
CATEGORIES= graphics
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
MAINTAINER= rm@FreeBSD.org
COMMENT= Image viewer and browser for the GNOME 2 environment
LIB_DEPENDS= libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique
RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gsettings-desktop-schemas.pc:${PORTSDIR}/devel/gsettings-desktop-schemas
USES= bison gettext gmake pathfix pkgconfig tar:xz
USE_GNOME= gnomeprefix intlhack gnomedocutils gconf2
WANT_GSTREAMER= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
GCONF_SCHEMAS= gthumb.schemas gthumb-comments.schemas gthumb-file-manager.schemas \
gthumb-image-viewer.schemas gthumb-importer.schemas gthumb-pixbuf-savers.schemas \
gthumb-slideshow.schemas gthumb_change_date.schemas gthumb_contact_sheet.schemas \
gthumb_convert_format.schemas gthumb_crop_options.schemas gthumb_image_print.schemas \
gthumb_photo_importer.schemas gthumb_rename_series.schemas gthumb_resize_images.schemas \
gthumb_resize_options.schemas gthumb_rotate_options.schemas gthumb_webalbums.schemas
PLIST_SUB= GTHUMB_VER=2.14
OPTIONS_DEFINE= EXIV2 CLUTTER GSTREAMER OPENRAW SOUP BRASERO YELP
OPTIONS_DEFAULT= EXIV2 CLUTTER GSTREAMER OPENRAW SOUP BRASERO YELP
CLUTTER_DESC= Fancy slideshows
SOUP_DESC= Web services uploaders
BRASERO_DESC= Write galleries to CD/DVD (large dependency)
YELP_DESC= Viewer for built-in help system
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MEXIV2}
LIB_DEPENDS+= libexiv2.so:${PORTSDIR}/graphics/exiv2
CONFIGURE_ARGS+=--enable-exiv2
PLIST_SUB+= EXIV2=""
.else
CONFIGURE_ARGS+=--disable-exiv2
PLIST_SUB+= EXIV2="@comment "
.endif
.if ${PORT_OPTIONS:MCLUTTER}
LIB_DEPENDS+= libclutter-gtk-0.10.so:${PORTSDIR}/graphics/clutter-gtk
CONFIGURE_ARGS+=--enable-clutter
.else
CONFIGURE_ARGS+=--disable-clutter
.endif
.if ${PORT_OPTIONS:MGSTREAMER}
USE_GSTREAMER= yes
CONFIGURE_ARGS+=--enable-gstreamer
PLIST_SUB+= GSTREAMER=""
GCONF_SCHEMAS+= gthumb-gstreamer.schemas
.else
CONFIGURE_ARGS+=--disable-gstreamer
PLIST_SUB+= GSTREAMER="@comment "
.endif
.if ${PORT_OPTIONS:MOPENRAW}
LIB_DEPENDS+= libopenrawgnome.so:${PORTSDIR}/graphics/libopenraw
CONFIGURE_ARGS+=--enable-libopenraw
.else
CONFIGURE_ARGS+=--disable-libopenraw
.endif
.if ${PORT_OPTIONS:MSOUP}
LIB_DEPENDS+= libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome
CONFIGURE_ARGS+=--enable-libsoup --enable-gnome-keyring
PLIST_SUB+= SOUP=""
GCONF_SCHEMAS+= gthumb-facebook.schemas gthumb-picasaweb.schemas
.else
CONFIGURE_ARGS+=--disable-libsoup --disable-gnome-keyring
PLIST_SUB+= SOUP="@comment "
.endif
.if ${PORT_OPTIONS:MBRASERO}
LIB_DEPENDS+= libbrasero-burn.so:${PORTSDIR}/sysutils/brasero
CONFIGURE_ARGS+=--enable-libbrasero
PLIST_SUB+= BRASERO=""
.else
CONFIGURE_ARGS+=--disable-libbrasero
PLIST_SUB+= BRASERO="@comment "
.endif
.if ${PORT_OPTIONS:MYELP}
RUN_DEPENDS+= yelp:${PORTSDIR}/x11/yelp
.endif
.include <bsd.port.mk>