mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-10 02:45:11 +00:00
67d3db6932
IIIMF stands for Internet/Intranet Input Method Framework. IIIMF is designed to be the next generation of input method framework which provides the following capabilities; * Multiplatform, platform independent. * Multlingual and Full UNICODE support, but satisfactory for native speakers. * Windowing System Independent. * Multiple language engines concurrently run. * Multiuser. * Distributed, lightweight clients and scalable server. * Extensible in multiple means. * Input method protocol efficient enough to be used over low-speed modem connection. * Easy input method engine development with plugin API. * Easy input method enabling with libiiimcf, even on console apps. * Small core part to start from. WWW: http://www.openi18n.org/subgroups/im/IIIMF/ PR: ports/60087 Submitted by: Kuang-che Wu <kcwu@csie.org>
32 lines
862 B
Makefile
32 lines
862 B
Makefile
# New ports collection makefile for: iiimf-headers
|
|
# Date created: 6 Dec 2003
|
|
# Whom: Kuang-che Wu <kcwu@csie.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= iiimf-headers
|
|
PORTVERSION= ${IIIMF_VER:S/_/./:C/-.*//}
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.openi18n.org/download/docs/im-sdk/
|
|
DISTNAME= im-sdk
|
|
DISTFILES= ${DISTNAME}.${IIIMF_VER:S/-/./}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= kcwu@csie.org
|
|
COMMENT= Header files for Internet/Intranet Input Method Framework
|
|
|
|
IIIMF_VER= r11_4-1467
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}-${IIIMF_VER}
|
|
USE_BZIP2= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/include/iiimf
|
|
.for file in IMArg.h IMProtocolStruct.h syscfg.h threaddef.h
|
|
${INSTALL_DATA} ${WRKSRC}/include/${file} ${PREFIX}/include/iiimf
|
|
.endfor
|
|
${MKDIR} ${PREFIX}/include/iiimf/iml
|
|
${INSTALL_DATA} ${WRKSRC}/include/iml/*.h ${PREFIX}/include/iiimf/iml
|
|
|
|
.include <bsd.port.mk>
|