blob: c3bdb186630aba00a57b5f5277f87eece7dd133d (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# New ports collection makefile for: Free Chinese Input Toy for X
# Date created: 26 March 2003
# Whom: Shen Chuan-Hsing <statue@freebsd.sinica.edu.tw>
#
# $FreeBSD$
#
PORTNAME= fcitx
PORTVERSION= 4.0.0
CATEGORIES= chinese x11
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} pinyin.tar.gz table.tar.gz
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
DIST_SUBDIR= ${PORTNAME}
MAINTAINER= darcsis@gmail.com
COMMENT= A simple and fast GBK Chinese XIM server
LIB_DEPENDS= execinfo.1:${PORTSDIR}/devel/libexecinfo
LICENSE= GPLv2
USE_GNOME= pango intltool gnomehack
USE_XORG= xpm x11 xtst
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
OPTIONS= XFT "Use Xft for Freetype font support" on \
TRAY "Enable system tray support" on \
DBUS "Enable D-Bus for KIMPanel support" off \
RECORDING "Enable recording of user input" off \
DEBUG "Build with debug information" off
.include <bsd.port.options.mk>
.if defined(WITH_XFT)
USE_XORG+= xft
.else
CONFIGURE_ARGS+= --disable-xft
.endif
.if defined(WITHOUT_TRAY)
CONFIGURE_ARGS+= --disable-tray
.endif
.if defined(WITH_DBUS)
LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus
.else
CONFIGURE_ARGS+= --disable-dbus
.endif
.if defined(WITH_RECORDING)
CONFIGURE_ARGS+= --enable-recording
.endif
.if defined(WITH_DEBUG)
CONFIGURE_ARGS+= --enable-debug
.endif
post-patch:
@${CP} ${_DISTDIR}/pinyin.tar.gz ${WRKSRC}/data
@${CP} ${_DISTDIR}/table.tar.gz ${WRKSRC}/data/table
.if ${OSVERSION} < 800067
# getline() is GNU extension which FreeBSD only recently adopted
@${REINPLACE_CMD} -E \
's:getline\(&(.+, )&(.+, .+\) != )-1:fgets(\1\2NULL:' \
${WRKSRC}/src/fcitx-config/fcitx-config.c \
${WRKSRC}/src/im/special/QuickPhrase.c \
${WRKSRC}/src/tools/tools.c
.endif
pre-install:
@${CHMOD} +x ${WRKSRC}/install-sh
post-install:
@${ECHO_CMD}
@${CAT} ${PKGMESSAGE}
@${ECHO_CMD}
.include <bsd.port.mk>
|