mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
New port: iiimf-*
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/ - Kuang-che Wu kcwu@csie.org PR: ports/60087 Submitted by: Kuang-che Wu <kcwu@csie.org>
This commit is contained in:
parent
6a5159fe04
commit
27f509effd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=96778
@ -119,6 +119,7 @@
|
||||
SUBDIR += htmldoc
|
||||
SUBDIR += htmlsection
|
||||
SUBDIR += htmltolatex
|
||||
SUBDIR += iiimf-client-lib
|
||||
SUBDIR += iiimf-headers
|
||||
SUBDIR += iiimf-protocol-lib
|
||||
SUBDIR += iiimf-server
|
||||
|
52
textproc/iiimf-client-lib/Makefile
Normal file
52
textproc/iiimf-client-lib/Makefile
Normal file
@ -0,0 +1,52 @@
|
||||
# New ports collection makefile for: iiimf-client-lib
|
||||
# Date created: 6 Dec 2003
|
||||
# Whom: Kuang-che Wu <kcwu@csie.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= iiimf-client-lib
|
||||
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= Internet/Intranet Input Method Client Framework
|
||||
|
||||
LIB_DEPENDS= iiimp.0:${PORTSDIR}/textproc/iiimf-protocol-lib
|
||||
|
||||
IIIMF_VER= r11_4-1467
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}-${IIIMF_VER}
|
||||
INSTALL_WRKSRC= ${WRKSRC}/lib/iiimcf
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_REINPLACE= yes
|
||||
HAS_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
||||
--includedir=${PREFIX}/include/iiimf
|
||||
DIRS= lib/EIMIL lib/iiimcf
|
||||
|
||||
post-patch:
|
||||
.for DIR in ${DIRS}
|
||||
${REINPLACE_CMD} -e "s,-lpthread,-pthread,g" \
|
||||
-e "s,-D_POSIX_C_SOURCE=199506L,,g" \
|
||||
-e "s,has_xiccallback=no,has_xiccallback=yes,g" \
|
||||
-e "s,/usr/lib/im,${PREFIX}/lib/im,g" \
|
||||
-e "s,-I\$${IM_INCLUDEDIR},-I${LOCALBASE}/include/iiimf,g" \
|
||||
${WRKSRC}/${DIR}/configure
|
||||
.endfor
|
||||
|
||||
do-configure:
|
||||
.for DIR in ${DIRS}
|
||||
cd ${WRKSRC}/${DIR} && ${SH} configure ${CONFIGURE_ARGS}
|
||||
.endfor
|
||||
|
||||
do-build:
|
||||
.for DIR in ${DIRS}
|
||||
cd ${WRKSRC}/${DIR} && ${GMAKE} all
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
1
textproc/iiimf-client-lib/distinfo
Normal file
1
textproc/iiimf-client-lib/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (im-sdk.r11_4.1467.tar.bz2) = ca6b6ac7c41641db6eaa0fa395748f90
|
11
textproc/iiimf-client-lib/files/patch-lib_iiimcf_Makefile.in
Normal file
11
textproc/iiimf-client-lib/files/patch-lib_iiimcf_Makefile.in
Normal file
@ -0,0 +1,11 @@
|
||||
--- lib/iiimcf/Makefile.in.orig Sun Dec 7 17:37:15 2003
|
||||
+++ lib/iiimcf/Makefile.in Sun Dec 7 17:37:41 2003
|
||||
@@ -124,7 +124,7 @@
|
||||
SUBDIRS = . test
|
||||
#libdir = /usr/local/lib
|
||||
libiiimcf_la_LDFLAGS = -module -version-info $(LIBIIIMCF_MAJOR_VERSION):$(LIBIIIMCF_MINOR_VERSION) \
|
||||
- -export-dynamic -export-symbols libiiimcf.sym -L../iiimp -liiimp
|
||||
+ -export-dynamic -export-symbols libiiimcf.sym -L$(prefix)/lib -liiimp
|
||||
|
||||
libiiimcf_la_CFLAGS = -DDEBUG
|
||||
libiiimcf_la_SOURCES = iiimcf.c attr.c commit.c context.c event.c \
|
@ -0,0 +1,11 @@
|
||||
--- lib/iiimcf/test/check/Makefile.in.orig Sat Dec 6 05:07:37 2003
|
||||
+++ lib/iiimcf/test/check/Makefile.in Sat Dec 6 05:08:00 2003
|
||||
@@ -96,7 +96,7 @@
|
||||
IM_LOCALEDIR = @IM_LOCALEDIR@
|
||||
IM_TOPDIR = @IM_TOPDIR@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
-LDFLAGS = @LDFLAGS@
|
||||
+LDFLAGS = @LDFLAGS@ $(THREAD_LDFLAGS)
|
||||
LIBIIIMCF_MAJOR_VERSION = @LIBIIIMCF_MAJOR_VERSION@
|
||||
LIBIIIMCF_MINOR_VERSION = @LIBIIIMCF_MINOR_VERSION@
|
||||
LIBIIIMCF_VERSION = @LIBIIIMCF_VERSION@
|
21
textproc/iiimf-client-lib/pkg-descr
Normal file
21
textproc/iiimf-client-lib/pkg-descr
Normal file
@ -0,0 +1,21 @@
|
||||
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/
|
||||
|
||||
- Kuang-che Wu
|
||||
kcwu@csie.org
|
5
textproc/iiimf-client-lib/pkg-plist
Normal file
5
textproc/iiimf-client-lib/pkg-plist
Normal file
@ -0,0 +1,5 @@
|
||||
include/iiimf/iiimcf.h
|
||||
lib/libiiimcf.so.2
|
||||
lib/libiiimcf.so
|
||||
lib/libiiimcf.la
|
||||
lib/libiiimcf.a
|
Loading…
Reference in New Issue
Block a user