blob: d815f102379634942805fd4591d5f5c156e3e416 (
plain)
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
82
83
|
# $NetBSD: Makefile,v 1.33 2012/10/06 14:25:21 asau Exp $
DISTNAME= xcin-2.5.3.pre2
PKGNAME= xcin-2.5.3rc2
PKGREVISION= 12
CATEGORIES= chinese x11
MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/xcin/devel/
MAINTAINER= rxg@NetBSD.org
HOMEPAGE= http://xcin.linux.org.tw/
COMMENT= Chinese XIM server
LICENSE= gnu-gpl-v2
MAKE_JOBS_SAFE= no
WRKSRC= ${WRKDIR}/xcin
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
USE_TOOLS+= msgfmt pax perl:run
USE_X11BASE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+= --with-db-lib=${BDBBASE}/lib
CONFIGURE_ARGS+= --with-db-inc=${BDBBASE}/include/${BDB_TYPE}
.include "../../mk/bsd.prefs.mk"
INSTALLATION_DIRS= share/doc/xcin
EGDIR= ${PREFIX}/share/examples/xcin
CONF_FILES= ${EGDIR}/xcinrc ${PKG_SYSCONFDIR}/xcinrc
PLIST_VARS+= big5hk gbk
.if ${OPSYS} == "NetBSD"
GB2312_ENC= euccn
.elif ${OPSYS} == "Linux"
GB2312_ENC= gb2312
PLIST.big5hk= yes
BIG5HK_ENC= big5hkscs
PLIST.gbk= yes
GBK_ENC= gbk
.elif ${OPSYS} == "HPUX"
GB2312_ENC= gb2312
PLIST.big5hk= yes
BIG5HK_ENC= hkbig5
.else
GB2312_ENC= euc
.endif
PLIST_SUBST+= GB2312_ENC=${GB2312_ENC}
.if defined(PLIST.big5hk) && ${PLIST.big5hk} == "yes"
PLIST_SUBST+= BIG5HK_ENC=${BIG5HK_ENC}
.endif
.if defined(PLIST.gbk) && ${PLIST.gbk} == "yes"
PLIST_SUBST+= GBK_ENC=${GBK_ENC}
.endif
post-extract:
${CP} ${FILESDIR}/xcinrc.DRAGONFLY ${WRKSRC}/etc
post-install:
cd ${WRKSRC}/doc && pax -rw \
-s ',^\./man$$,,' -s ',^\./man/.*,,' \
. ${DESTDIR}${PREFIX}/share/doc/xcin
INSTALL_MAKE_FLAGS+= program_prefix=${DESTDIR}
BUILDLINK_DEPMETHOD.libXt?= build
BDB_ACCEPTED= db2 db3 db4 db5
BUILDLINK_TRANSFORM+= l:db:${BDB_TYPE}
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../inputmethod/libchewing02/buildlink3.mk"
.include "../../inputmethod/libtabe/buildlink3.mk"
.include "../../x11/libX11/buildlink3.mk"
.include "../../x11/libXext/buildlink3.mk"
.include "../../x11/libXt/buildlink3.mk"
.include "../../mk/bdb.buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|