2be084a4f2
There are still test-hanging issues :-\ Can a thread guru, please, try building this port? Some mentioning of this problem is at: http://oss.software.ibm.com/cvs/icu/~checkout~/icu/readme.html?tag=release-3-2#ImportantNotesCPlusPlus
87 lines
2 KiB
Makefile
87 lines
2 KiB
Makefile
# New ports collection makefile for: icu
|
|
# Date created: 22 Jan 2001
|
|
# Whom: dwm
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= icu
|
|
PORTVERSION= 3.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://www-126.ibm.com/pub/icu/${PORTVERSION}/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= International Components for Unicode (from IBM)
|
|
|
|
INSTALLS_SHLIB= yes
|
|
NO_FILTER_SHLIBS= yes
|
|
|
|
WRKSRC= ${WRKDIR}/icu
|
|
ICUWRKSRC= ${WRKSRC}/source
|
|
CONFIGURE_WRKSRC= ${ICUWRKSRC}
|
|
BUILD_WRKSRC= ${ICUWRKSRC}
|
|
INSTALL_WRKSRC= ${ICUWRKSRC}
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= runConfigureICU
|
|
CONFIGURE_ARGS+= ${OPSYS}
|
|
CONFIGURE_ARGS+= --enable-shared
|
|
CONFIGURE_ARGS+= --enable-static
|
|
CONFIGURE_ARGS+= --enable-samples=no --enable-tests=yes
|
|
.if defined(NO_THREADS)
|
|
CONFIGURE_ARGS+= --enable-threads=no
|
|
.else
|
|
CONFIGURE_ENV+= THREADSCPPFLAGS="${PTHREAD_CFLAGS}" \
|
|
THREADSCFLAGS="${PTHREAD_CFLAGS}" \
|
|
THREADSCXXFLAGS="${PTHREAD_CFLAGS}" \
|
|
PTHREAD_LIBS="${PTHREAD_LIBS}"
|
|
.endif
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ENV+= CFLAGS="${CFLAGS}" CC="${CC}" CXX="${CXX}"
|
|
|
|
MAN1+= gencnval.1
|
|
MAN1+= genrb.1
|
|
MAN1+= icu-config.1
|
|
MAN1+= makeconv.1
|
|
MAN1+= pkgdata.1
|
|
MAN1+= uconv.1
|
|
MAN8+= decmn.8
|
|
MAN8+= genccode.8
|
|
MAN8+= gencmn.8
|
|
MAN8+= gennames.8
|
|
MAN8+= gennorm.8
|
|
MAN8+= genprops.8
|
|
MAN8+= gensprep.8
|
|
MAN8+= genuca.8
|
|
|
|
ICUMAJOR= ${PORTVERSION:S/.//:R}
|
|
PLIST_SUB+= ICUMAJOR=${ICUMAJOR}
|
|
PLIST_SUB+= ICUVER=${PORTVERSION}
|
|
|
|
pre-fetch:
|
|
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
|
|
#
|
|
# You may use the following build options by defining
|
|
# them on the command line with -D
|
|
#
|
|
# NO_THREADS do not build a thread enabled library
|
|
#
|
|
.endif
|
|
|
|
pre-patch:
|
|
# VPATH does not work due to IBM's mistake:
|
|
${LN} -s ${FILESDIR}/*.ucm ${WRKSRC}/source/data/mappings/
|
|
@for l in ${FILESDIR}/*.ucm ; do \
|
|
echo UCM_SOURCE_LOCAL+=`basename $$l` >> \
|
|
${WRKSRC}/source/data/mappings/ucmlocal.mk ; \
|
|
done
|
|
|
|
post-build test:
|
|
${GMAKE} -C ${ICUWRKSRC}/test
|
|
.for t in intltest iotest cintltst
|
|
cd ${ICUWRKSRC}/test/$t && ${SETENV} \
|
|
LD_LIBRARY_PATH=${ICUWRKSRC}/lib:${ICUWRKSRC}/tools/ctestfw ./$t
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|