aboutsummaryrefslogtreecommitdiff
path: root/devel/gtranslator/Makefile
blob: f18c7669f2e487dd861c0258188d6deca82cf489 (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
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$

PORTNAME=	gtranslator
PORTVERSION=	2.91.7
CATEGORIES=	devel gnome
MASTER_SITES=	GNOME

MAINTAINER=	gnome@FreeBSD.org
COMMENT=	GNOME application for creating GNU gettext translation files

LICENSE=	GPLv3

BUILD_DEPENDS=	iso-codes>=0:misc/iso-codes \
		itstool:textproc/itstool \
		gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas
LIB_DEPENDS=	libpeas-1.0.so:devel/libpeas \
		libgdl-3.so:x11-toolkits/gdl \
		libjson-glib-1.0.so:devel/json-glib
RUN_DEPENDS=	iso-codes>=0:misc/iso-codes \
		gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas

USE_GNOME=	intlhack gnomeprefix gtk30 libgda5 gtksourceview3 libxml2 \
		introspection:build
USES=		desktop-file-utils gettext gmake libtool pathfix \
		pkgconfig python tar:xz
USE_PYTHON=	py3kplist
GNU_CONFIGURE=	yes
USE_LDCONFIG=	yes
INSTALLS_ICONS=	yes
CPPFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib
CONFIGURE_ARGS=	--disable-debug \
		--with-gda=5.0 \
		--enable-compile-warnings=no
INSTALL_TARGET=	install-strip

GLIB_SCHEMAS=	org.gnome.gtranslator.gschema.xml \
		org.gnome.gtranslator.plugins.codeview.gschema.xml \
		org.gnome.gtranslator.plugins.open-tran.gschema.xml \
		org.gnome.gtranslator.plugins.translation-memory.gschema.xml

OPTIONS_DEFINE=	DICT
OPTIONS_DEFAULT=DICT
DICT_DESC=	Build dictionary plugin

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MDICT}
BUILD_DEPENDS+=	gnome-dictionary>=3.4.0:deskutils/gnome-dictionary
LIB_DEPENDS+=	libgdict-1.0.so:deskutils/gnome-dictionary
RUN_DEPENDS+=	gnome-dictionary>=3.4.0:deskutils/gnome-dictionary
GLIB_SCHEMAS+=	org.gnome.gtranslator.plugins.dictionary.gschema.xml
CONFIGURE_ARGS+=--with-dictionary
PLIST_SUB+=	DICT=""
.else
CONFIGURE_ARGS+=--without-dictionary
PLIST_SUB+=	DICT="@comment "
.endif

.include <bsd.port.mk>