summaryrefslogtreecommitdiffstats
path: root/graphics/eog-plugins/Makefile
blob: 4abbeb70aa3a22a0af927fd697a7aa86363f6af0 (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
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
# $FreeBSD$
#   $MCom$

PORTNAME=   eog-plugins
PORTVERSION=    3.12.1
PORTREVISION=   1
CATEGORIES= graphics gnome
MASTER_SITES=   GNOME
DIST_SUBDIR=    gnome3

MAINTAINER= gnome@FreeBSD.org
COMMENT=    Plug-ins for the Eye of GNOME image viewer application

BUILD_DEPENDS=  eog:${PORTSDIR}/graphics/eog
LIB_DEPENDS=    libgdata.so.13:${PORTSDIR}/devel/libgdata \
        libexif.so:${PORTSDIR}/graphics/libexif \
        libpeas-1.0.so:${PORTSDIR}/devel/libpeas
RUN_DEPENDS=    eog:${PORTSDIR}/graphics/eog

USE_GNOME=  gnomeprefix intlhack gtk30
USES=       gettext gmake libtool pathfix pkgconfig tar:xz
GNU_CONFIGURE=  yes
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip

GLIB_SCHEMAS=   org.gnome.eog.plugins.exif-display.gschema.xml

OPTIONS_DEFINE= CHAMPLAIN PYTHON
OPTIONS_DEFAULT=CHAMPLAIN PYTHON
CHAMPLAIN_DESC= Champlain map plugin

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MCHAMPLAIN}
USE_GL=     gl
LIB_DEPENDS+=   libchamplain-0.12.so:${PORTSDIR}/graphics/libchamplain
PLIST_SUB+= CHAMPLAIN=""
.else
PLIST_SUB+= CHAMPLAIN="@comment "
.endif

PLIST_SUB+= PYVER=${PYTHON_VER:S|.||}
.if ${PORT_OPTIONS:MPYTHON}
CONFIGURE_ARGS+=--enable-python
USES+=      python:3
PLIST_SUB+= PYTHON=""
GLIB_SCHEMAS+=  org.gnome.eog.plugins.export-to-folder.gschema.xml \
        org.gnome.eog.plugins.fullscreenbg.gschema.xml \
        org.gnome.eog.plugins.pythonconsole.gschema.xml
.else
CONFIGURE_ARGS+=--disable-python
PLIST_SUB+= PYTHON="@comment "
.endif

.if ! ${PORT_OPTIONS:MCHAMPLAIN}
post-patch:
    @${REINPLACE_CMD} -e 's|champlain-gtk|disabled-champlain-gtk|g' \
        ${WRKSRC}/configure
    @${REINPLACE_CMD} '/^DEFAULT_PLUGINS=/,/^$$/ s/map//' \
        ${WRKSRC}/configure
.endif

.include <bsd.port.mk>