aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/eog/Makefile
blob: d8483284c4e6862d47267daac196ce87e790ea12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
# $FreeBSD$

PORTNAME=   eog
PORTVERSION=    3.18.2
CATEGORIES= graphics gnome
MASTER_SITES=   GNOME
DIST_SUBDIR=    gnome3

MAINTAINER= gnome@FreeBSD.org
COMMENT=    The Eye Of Gnome image viewer

BUILD_DEPENDS=  itstool:textproc/itstool \
        gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas
LIB_DEPENDS=    libpeas-gtk-1.0.so:devel/libpeas \
        liblcms.so:graphics/lcms
RUN_DEPENDS=    gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas

PORTSCOUT=  limitw:1,even

USES=       desktop-file-utils gettext gmake gnome libtool pathfix \
        pkgconfig tar:xz
USE_GNOME=  intltool librsvg2 gtk30 gnomedesktop3 introspection:build
INSTALLS_ICONS= yes
GNU_CONFIGURE=  yes
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip

GLIB_SCHEMAS=   org.gnome.eog.enums.xml \
        org.gnome.eog.gschema.xml

PLIST_SUB+= VERSION=3.0

OPTIONS_DEFINE= EXIF EXEMPI
OPTIONS_DEFAULT=EXIF EXEMPI
EXIF_DESC=  Digital camera file meta-data support
EXEMPI_DESC=    XMP support

.include <bsd.port.options.mk>

_WITH_EXIF= no
_WITH_EXEMPI=   no

.if ${PORT_OPTIONS:MEXIF}
CONFIGURE_ARGS+=--with-libexif
LIB_DEPENDS+=   libexif.so:graphics/libexif
PLIST_SUB+= EXIF=""
_WITH_EXIF= yes
.else
CONFIGURE_ARGS+=--without-libexif
PLIST_SUB+= EXIF="@comment "
.endif

.if ${PORT_OPTIONS:MEXEMPI}
CONFIGURE_ARGS+=--with-xmp
LIB_DEPENDS+=   libexempi.so:textproc/exempi
_WITH_EXEMPI=   yes
.else
CONFIGURE_ARGS+=--without-xmp
.endif

.if ${_WITH_EXIF}=="yes" || ${_WITH_EXEMPI}=="yes"
PLIST_SUB+= EXIFEXEMPI=""
.else
PLIST_SUB+= EXIFEXEMPI="@comment "
.endif

.include <bsd.port.mk>