aboutsummaryrefslogtreecommitdiff
path: root/textproc/iiimf-x/Makefile
blob: 381589ee91e60507ebcb6c9c485e35e9d2a70404 (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
# New ports collection makefile for:	iiimf-x
# Date created:		6 Dec 2003
# Whom:			Kuang-che Wu <kcwu@csie.org>
#
# $FreeBSD$
#

PORTNAME=	iiimf-x
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 X Client Framework

LIB_DEPENDS=	iiimp.0:${PORTSDIR}/textproc/iiimf-protocol-lib \
		iiimcf.2:${PORTSDIR}/textproc/iiimf-client-lib

IIIMF_VER=	r11_4-1467
WRKSRC=		${WRKDIR}/${DISTNAME}-${IIIMF_VER}
USE_BZIP2=	yes
USE_GMAKE=	yes
USE_XLIB=	yes
INSTALLS_SHLIB=	yes
USE_REINPLACE=	yes
HAS_CONFIGURE=	yes
USE_MOTIF=	yes
CONFIGURE_ARGS=	--prefix=${PREFIX}
DIRS=		iiimxcf/xiiimp.so iiimxcf/htt_xbe

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,${LOCALBASE}/lib/im,g" \
		-e "s,-I\$$(IM_INCLUDEDIR),-I${LOCALBASE}/include/iiimf,g" \
		${WRKSRC}/${DIR}/configure
	${REINPLACE_CMD} -e "s,/usr/lib/im,${PREFIX}/lib/im,g" \
		${WRKSRC}/iiimxcf/xiiimp.so/iiimp/Makefile.in \
		${WRKSRC}/iiimxcf/xiiimp.so/iiimp/iiimpAux.c \
		${WRKSRC}/iiimxcf/xiiimp.so/iiimp/iiimpIM.c \
		${WRKSRC}/iiimxcf/xiiimp.so/iiimp/iiimpConv.c \
		${WRKSRC}/iiimxcf/xiiimp.so/iiimp/csconv.h \
		${WRKSRC}/iiimxcf/htt_xbe/lib/IMdkit/common/XIMPublic.cpp \
		${WRKSRC}/iiimxcf/htt_xbe/src/watchdog.c
.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

do-install:
.for DIR in ${DIRS}
	cd ${WRKSRC}/${DIR} && ${GMAKE} install
.endfor

.include <bsd.port.mk>