mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-13 23:36:08 +00:00
b215d940f4
Submitted by: Keith Jang <jtjang@gcn.net.tw> Update xcin to xcin-2.5.1 after repo copied. Old xcin will be dropped out after few months. xcin is a Chinese INput application in X, well support in both Traditional Chinese(Big5) and Simplified Chinese(GB) charsets. New version of xcin support standard XIM too. You can activate one xcin-XIM server, meanwhile, use different locale configuration to input Big5/GB words at the different sessions. This port is current version of xcin, code rewritten by Tung-Han Hsieh <thhsieh@linux.org.tw>. WWW: http://xcin.linux.org.tw/ Porting to FreeBSD by Yung-Jen Hung <winard@ms11.url.com.tw> & Keith Jang <jtjang@gcn.net.tw>.
70 lines
2.6 KiB
Makefile
70 lines
2.6 KiB
Makefile
# New ports collection makefile for: xcin25
|
|
# Version required: xcin-2.5.1
|
|
# Date created: 25 June 1999
|
|
# Whom: Keith Jang <jtjang@gcn.net.tw>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= xcin-2.5.1
|
|
PKGNAME= zh-xcin-2.5.1
|
|
CATEGORIES= chinese x11
|
|
MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/xcin/
|
|
|
|
MAINTAINER= jtjang@gcn.net.tw
|
|
|
|
LIB_DEPENDS= tabe.0:${PORTSDIR}/chinese/libtabe \
|
|
intl.1:${PORTSDIR}/devel/gettext
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libdb2.a:${PORTSDIR}/databases/db
|
|
RUN_DEPENDS= ${PREFIX}/lib/X11/locale/zh_TW.Big5/XLC_LOCALE:${PORTSDIR}/x11/XFree86
|
|
|
|
WRKSRC= ${WRKDIR}/xcin-2.5
|
|
USE_X_PREFIX= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--with-xcin-dir=${PREFIX}/lib/X11/xcin25 \
|
|
--with-dbinc=${LOCALBASE}/include/db2 \
|
|
--with-dblib=${LOCALBASE}/lib \
|
|
--with-tabeinc=${LOCALBASE}/include/tabe \
|
|
--with-tabelib=${LOCALBASE}/lib \
|
|
--with-intlinc=${LOCALBASE}/include \
|
|
--with-intllib=${LOCALBASE}/lib
|
|
|
|
post-install:
|
|
${STRIP} ${PREFIX}/bin/xcin2.5
|
|
${STRIP} ${PREFIX}/lib/X11/xcin25/bin/cin2tab
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/Bugs ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/COPYING ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/CREDITS ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/Changes ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/Cin ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/CopyRight ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/FAQ ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/README ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/SETUP ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/Todo ${PREFIX}/lib/X11/xcin25/doc
|
|
${INSTALL_MAN} ${WRKSRC}/doc/Usage ${PREFIX}/lib/X11/xcin25/doc
|
|
${MKDIR} ${PREFIX}/lib/X11/xcin25/doc/internal
|
|
${INSTALL_MAN} ${WRKSRC}/doc/internal/IMdkit \
|
|
${PREFIX}/lib/X11/xcin25/doc/internal
|
|
${INSTALL_MAN} ${WRKSRC}/doc/internal/gen_inp \
|
|
${PREFIX}/lib/X11/xcin25/doc/internal
|
|
${INSTALL_MAN} ${WRKSRC}/doc/internal/module \
|
|
${PREFIX}/lib/X11/xcin25/doc/internal
|
|
${INSTALL_MAN} ${WRKSRC}/doc/internal/structer \
|
|
${PREFIX}/lib/X11/xcin25/doc/internal
|
|
${MKDIR} ${PREFIX}/lib/X11/xcin25/doc/modules
|
|
${INSTALL_MAN} ${WRKSRC}/doc/modules/bimsphone \
|
|
${PREFIX}/lib/X11/xcin25/doc/modules
|
|
${INSTALL_MAN} ${WRKSRC}/doc/modules/gen_inp \
|
|
${PREFIX}/lib/X11/xcin25/doc/modules
|
|
${INSTALL_MAN} ${WRKSRC}/doc/modules/im_comm \
|
|
${PREFIX}/lib/X11/xcin25/doc/modules
|
|
${INSTALL_MAN} ${WRKSRC}/doc/modules/zh_hex \
|
|
${PREFIX}/lib/X11/xcin25/doc/modules
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|