blob: b2f741f980d1f91bee1ac210d46b963c81e6eca7 (
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
|
# New ports collection makefile for: ibus-anthy
# Date created: 30 Apr 2009
# Whom: Daichi GOTO <daichi@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= ibus-anthy
PORTVERSION= 1.1.0.20090402
CATEGORIES= japanese
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= daichi@freebsd.org
COMMENT= Anthy engine for IBus
BUILD_DEPENDS= swig:${PORTSDIR}/devel/swig13
LIB_DEPENDS= anthy.1:${PORTSDIR}/japanese/anthy
RUN_DEPENDS= ibus-daemon:${PORTSDIR}/textproc/ibus
USE_GNOME= pygtk2
USE_GETTEXT= yes
USE_PYTHON= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
PROJECTHOST= ibus
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e "s|-I/usr/include|-I${LOCALBASE}/include|" ${WRKSRC}/engine/Makefile.am
@${REINPLACE_CMD} -e "s|-I/usr/include|-I${LOCALBASE}/include|" ${WRKSRC}/engine/Makefile.in
.include <bsd.port.mk>
|