blob: be4bb7f334d7d9c4b302dc9b4371ad5836d681ab (
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
|
# Created by: Adam Weinberger <adamw@FreeBSD.org>
# $FreeBSD$
# $MCom: ports/trunk/editors/gedit-plugins3/Makefile 17268 2013-04-01 05:13:11Z marcus $
PORTNAME= gedit-plugins
PORTVERSION= 3.4.0
CATEGORIES= editors gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome3
MAINTAINER= gnome@FreeBSD.org
COMMENT= Plugins for GEdit 3
BUILD_DEPENDS= gedit>=${GEDITVER}:${PORTSDIR}/editors/gedit3
LIB_DEPENDS= peas-1.0:${PORTSDIR}/devel/libpeas
RUN_DEPENDS= gedit>=${GEDITVER}:${PORTSDIR}/editors/gedit3
CONFLICTS= gedit-plugins-2.[0-9]*
GEDITVER= 3.4.0
LATEST_LINK= gedit-plugins3
USE_LDCONFIG= yes
USE_XZ= yes
USE_GMAKE= yes
USES= gettext pathfix pkgconfig
USE_AUTOTOOLS= libtool
USE_GNOME= gnomeprefix intlhack gtk30 gtksourceview3
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
GLIB_SCHEMAS= org.gnome.gedit.plugins.drawspaces.gschema.xml
OPTIONS_DEFINE= PYTHON
PYTHON_DESC= Build plugins that depend on python
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPYTHON}
USE_PYTHON= yes
BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/dbus/bus.py:${PORTSDIR}/devel/py-dbus
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/dbus/bus.py:${PORTSDIR}/devel/py-dbus
# the charmap plugin doesn't work, missing py-gucharmap stuff
CONFIGURE_ARGS+=--enable-python
GLIB_SCHEMAS+= org.gnome.gedit.plugins.terminal.gschema.xml
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>
|