aboutsummaryrefslogtreecommitdiff
path: root/textproc/libtranslate/Makefile
blob: 7cf4e1e90753f9cd74bb1c9a5f085d9d83f0470b (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: Jean-Yves Lefort <jylefort@brutele.be>

PORTNAME=	libtranslate
PORTVERSION=	0.99
PORTREVISION=	9
CATEGORIES=	textproc
MASTER_SITES=	SAVANNAH
DISTFILES=	${DISTNAME}${EXTRACT_SUFX} # May append to this

PATCHFILES=	libtranslate-0.99-services.diff libtranslate-0.99-postmarker.diff
PATCH_SITES=	${MASTER_SITES}
PATCH_DIST_STRIP=-p1

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Natural language translation library

USES=		gettext gmake gnome libtool pathfix pkgconfig
USE_GNOME=	glib20 intlhack
GNU_CONFIGURE=	yes
USE_LDCONFIG=	yes
CPPFLAGS+=	-I${LOCALBASE}/include
LIBS+=		-L${LOCALBASE}/lib
CONFIGURE_ARGS=	--with-html-dir=${PREFIX}/share/doc
INSTALL_TARGET=	install-strip

OPTIONS_DEFINE=	GENERIC TALKFILTERS
OPTIONS_DEFAULT=	GENERIC TALKFILTERS
GENERIC_DESC=	generic module
TALKFILTERS_DESC=	talkfilters module

post-patch::
	@${REINPLACE_CMD} -e 's|libsoup-2.2|libsoup-2.4|g' ${WRKSRC}/configure

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MGENERIC}
PLIST_SUB+=	GENERIC=""
USE_GNOME+=	libxml2
LIB_DEPENDS+=	libsoup-2.4.so:devel/libsoup
CPPFLAGS+=	-DHAVE_LIBSOUP24
DISTFILES+=	libtranslate-0.99-libsoup24.diff
EXTRACT_ONLY=	${DISTFILES:M*tar.*}
# This patching needs to happen AFTER the stock patches were applied:
post-patch::
	${SED} s,SOUP_MESSAGE_RESPONSE_,trans_SOUP_MESSAGE_RESPONSE_,g	\
	    ${DISTDIR}/libtranslate-0.99-libsoup24.diff \
		| ${PATCH} -d ${WRKSRC} -p1
.else
CONFIGURE_ARGS+=--disable-generic
PLIST_SUB+=	GENERIC="@comment "
.endif

.if ${PORT_OPTIONS:MTALKFILTERS}
PLIST_SUB+=	TALKFILTERS=""
LIB_DEPENDS+=	libtalkfilters.so:misc/talkfilters
.else
CONFIGURE_ARGS+=--disable-talkfilters
PLIST_SUB+=	TALKFILTERS="@comment "
.endif

.include <bsd.port.mk>