summaryrefslogtreecommitdiffstats
path: root/editors/gedit-plugins/Makefile
blob: 89e0c681b6de0cbd982622ee308f4520f6aa436e (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
# Created by: Adam Weinberger <adamw@FreeBSD.org>
# $FreeBSD$
#   $MCom$

PORTNAME=   gedit-plugins
PORTVERSION=    3.14.1
CATEGORIES= editors gnome
MASTER_SITES=   GNOME
DIST_SUBDIR=    gnome3

MAINTAINER= gnome@FreeBSD.org
COMMENT=    Plugins for GEdit 3

BUILD_DEPENDS=  gedit>=0:${PORTSDIR}/editors/gedit \
        itstool:${PORTSDIR}/textproc/itstool
LIB_DEPENDS=    libpeas-1.0.so:${PORTSDIR}/devel/libpeas
RUN_DEPENDS=    gedit>=0:${PORTSDIR}/editors/gedit

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

GLIB_SCHEMAS=   org.gnome.gedit.plugins.drawspaces.gschema.xml \
        org.gnome.gedit.plugins.wordcompletion.gschema.xml

OPTIONS_DEFINE= PYTHON
OPTIONS_DEFAULT=PYTHON
PYTHON_DESC=    Build plugins that depend on python

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MPYTHON}
USES+=      python
BUILD_DEPENDS+= py3?-dbus>=0:${PORTSDIR}/devel/py3-dbus
RUN_DEPENDS+=   py3?-dbus>=0:${PORTSDIR}/devel/py3-dbus
# the charmap plugin doesn't work, missing py-gucharmap stuff
CONFIGURE_ARGS+=--enable-python
PLIST_SUB+= PYTHON=""
.else
CONFIGURE_ARGS+=--disable-python
PLIST_SUB+= PYTHON="@comment "
.endif

post-patch:
    @${REINPLACE_CMD} -e 's| \\t\\r\\n\\f|[:space:]|g' \
            ${WRKSRC}/configure

.include <bsd.port.mk>