806320585f
PR: ports/77927 Submitted by: Masanori OZAWA <ozawa@ongs.co.jp> Approved by: maintainer Pointed out by: ume, nork, hrs
71 lines
1.9 KiB
Makefile
71 lines
1.9 KiB
Makefile
# New ports collection makefile for: iiimf-csconv
|
|
# Date created: 6 Dec 2003
|
|
# Whom: Kuang-che Wu <kcwu@csie.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= csconv
|
|
PORTVERSION= ${IIIMF_VER:S/_/./g:C/-.*//}
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.openi18n.org/download/im-sdk/src/
|
|
PKGNAMEPREFIX= iiimf-
|
|
DISTNAME= im-sdk-src-${IIIMF_VER}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= kcwu@csie.org
|
|
COMMENT= Internet/Intranet Input Method Framework encoding convert library
|
|
|
|
IIIMF_VER= r12_1-svn2002
|
|
USE_ICONV= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= intltool
|
|
USE_REINPLACE= yes
|
|
WANT_AUTOCONF_VER=253
|
|
WANT_AUTOHEADER_VER=253
|
|
WANT_AUTOMAKE_VER=15
|
|
WANT_LIBTOOL_VER=15
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/src-//}/lib/CSConv
|
|
PATCH_WRKSRC= ${WRKDIR}/${DISTNAME:S/src-//}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 503000
|
|
IGNORE= "It is supported on FreeBSD 5.3 and later"
|
|
.endif
|
|
|
|
.if ${ARCH} != "i386"
|
|
IGNORE= "${ARCH} is not support."
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=CC=gcc CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -liconv"
|
|
UPDATE_ARGS+= ACLOCAL=${ACLOCAL} AUTOMAKE=${AUTOMAKE} \
|
|
AUTOHEADER=${AUTOHEADER} AUTOCONF=${AUTOCONF} \
|
|
LIBTOOL=${LIBTOOL} LIBTOOLIZE=${LIBTOOLIZE}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e "s,/usr/lib/im,${PREFIX}/lib/im,g" \
|
|
${WRKSRC}/../../acfiles/im_common.m4 \
|
|
${WRKSRC}/configure.ac \
|
|
${WRKSRC}/csconv.h \
|
|
${WRKSRC}/converterPI/configure.in \
|
|
${WRKSRC}/converterPI/test/icutest4linux.c \
|
|
${WRKSRC}/converterPI/icuconv_relay.c \
|
|
${WRKSRC}/converterPI/icuconv/common/config.h
|
|
${REINPLACE_CMD} -e "s,ELIBBAD,ENOEXEC," \
|
|
${WRKSRC}/converterPI/icuconv/common/icuconv.c
|
|
|
|
pre-configure:
|
|
(cd ${WRKSRC}/../../ && ${GMAKE} ${UPDATE_ARGS} update-acfiles)
|
|
(cd ${WRKSRC} && ${ACLOCAL} -I ../../acfiles && ${AUTOCONF})
|
|
(cd ${WRKSRC}/converterPI/ && ${AUTOCONF})
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} \
|
|
-e "s,prefix = ${PREFIX},prefix = ${PREFIX}/lib/im," \
|
|
`${FIND} ${WRKSRC} -type f -name Makefile`
|
|
|
|
.include <bsd.port.post.mk>
|