07192a24ed
PR: ports/170946 Submitted by: linimon Hat: portmgr
95 lines
2.2 KiB
Makefile
95 lines
2.2 KiB
Makefile
# New ports collection makefile for: icu
|
|
# Date created: 22 Jan 2001
|
|
# Whom: dwm
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= icu
|
|
PORTVERSION= 4.8.1.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://download.icu-project.org/files/icu4c/${PORTVERSION}/ \
|
|
SF/${PORTNAME}/ICU4C/${PORTVERSION}/
|
|
DISTNAME= icu4c-${PORTVERSION:S/./_/g}
|
|
EXTRACT_SUFX= -src.tgz
|
|
|
|
MAINTAINER= office@FreeBSD.org
|
|
COMMENT= International Components for Unicode (from IBM)
|
|
|
|
LICENSE= ICU
|
|
LICENSE_NAME= ICU license
|
|
LICENSE_FILE= ${WRKSRC}/../unicode-license.txt
|
|
LICENSE_PERMS= ${_LICENSE_PERMS_DEFAULT}
|
|
|
|
GNU_CONFIGURE= yes
|
|
OPTIONS= THREADS "Build thread-safe version of the library" on
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/icu/source
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-data-packaging=library \
|
|
--disable-samples \
|
|
--enable-release \
|
|
--enable-shared \
|
|
--enable-static
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
USE_GMAKE= yes
|
|
INSTALL_TARGET= install install-manx
|
|
|
|
MAN1+= derb.1
|
|
MAN1+= genbrk.1
|
|
MAN1+= gencnval.1
|
|
MAN1+= genctd.1
|
|
MAN1+= genrb.1
|
|
MAN1+= icu-config.1
|
|
MAN1+= makeconv.1
|
|
MAN1+= pkgdata.1
|
|
MAN1+= uconv.1
|
|
MAN8+= icupkg.8
|
|
MAN8+= genccode.8
|
|
MAN8+= gencmn.8
|
|
MAN8+= gensprep.8
|
|
|
|
ICUMAJOR= ${PORTVERSION:S/.//:C,\..*,,g}
|
|
ICUMINOR= ${PORTVERSION:C/[0-9]\.[0-9]\.//}
|
|
.if ${ICUMINOR} == ""
|
|
ICUMINOR= 0
|
|
.endif
|
|
PLIST_SUB+= ICUMAJOR=${ICUMAJOR} ICUMINOR=${ICUMINOR} ICUVER=${PORTVERSION}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "arm"
|
|
BROKEN= Does not compile on arm
|
|
.endif
|
|
|
|
.if defined(WITHOUT_THREADS)
|
|
CONFIGURE_ARGS+= --enable-threads=no
|
|
.else
|
|
# This builds thread-safe, but not the thread-using version:
|
|
CONFIGURE_ARGS+= --enable-weak-threads
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/CXXFLAGS=/s/-ansi//' \
|
|
${WRKSRC}/configure
|
|
.if defined(WITHOUT_THREADS)
|
|
@${REINPLACE_CMD} -e 's,\(THREADSC.*FLAGS\).*,\1=${PTHREAD_CFLAGS},g' ${WRKSRC}/config/mh-bsd-gcc
|
|
.endif
|
|
@${REINPLACE_CMD} -e 's,$$(libdir)/pkgconfig,${PREFIX}/libdata/pkgconfig,g' ${WRKSRC}/Makefile.in
|
|
|
|
iotest cintltst intltest:
|
|
# Performing the ${.TARGET} test
|
|
-${GMAKE} -C ${WRKSRC}/test
|
|
cd ${WRKSRC}/test/${.TARGET} && ${SETENV} \
|
|
LD_LIBRARY_PATH=${WRKSRC}/lib:${WRKSRC}/tools/ctestfw \
|
|
./${.TARGET}
|
|
|
|
post-build test regression-test: iotest cintltst intltest
|
|
|
|
.include <bsd.port.post.mk>
|