diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-11-04 13:24:27 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-11-04 13:24:27 +0000 |
commit | 83e0bdf2b9e2518f1ff660a9cf2004906c263387 (patch) | |
tree | acdb18537c0ced423dead541fba1d8679962d63e /devel/icu/Makefile | |
parent | New patch from upstream: (diff) |
- upgrade to the maintainance release 4.8.1.1
- do not use anymore the runConfigureScript helper but directly use configure (this fix all the libreoffice problem related to icu)
- add a patch from redhat to fix crash with freeserif
PR: ports/162229 [1], ports/160540 [2], ports/160763 [2]
Submitted by: Alexandr Kovalenko <never@nevermind.kiev.ua> [1], Dmitry Pryanishnikov <lynx.ripe@gmail.com> [2], Tomas Volka <tomas.volka@unicorn.eu>
Tested by: frogs (irc://freenode/##freebsd)
Notes
Notes:
svn path=/head/; revision=285027
Diffstat (limited to 'devel/icu/Makefile')
-rw-r--r-- | devel/icu/Makefile | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/devel/icu/Makefile b/devel/icu/Makefile index 2df89a3e673e..d1f97ee3f363 100644 --- a/devel/icu/Makefile +++ b/devel/icu/Makefile @@ -6,9 +6,10 @@ # PORTNAME= icu -PORTVERSION= 4.8.1 +PORTVERSION= 4.8.1.1 CATEGORIES= devel -MASTER_SITES= SF/${PORTNAME}/ICU4C/${PORTVERSION}/ +MASTER_SITES= http://download.icu-project.org/files/icu4c/${PORTVERSION}/ \ + SF/${PORTNAME}/ICU4C/${PORTVERSION}/ DISTNAME= icu4c-${PORTVERSION:S/./_/g} EXTRACT_SUFX= -src.tgz @@ -27,12 +28,13 @@ USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/icu/source -CONFIGURE_SCRIPT= runConfigureICU -CONFIGURE_ARGS+= ${OPSYS} \ +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-data-packaging=library \ + --disable-samples \ + --enable-release \ --enable-shared \ - --enable-static \ - --enable-samples=no \ - --mandir=${MANPREFIX}/man + --enable-static + MAKE_JOBS_UNSAFE= yes USE_GMAKE= yes @@ -52,8 +54,8 @@ MAN8+= genccode.8 MAN8+= gencmn.8 MAN8+= gensprep.8 -ICUMAJOR= ${PORTVERSION:S/.//:R} -ICUMINOR= ${PORTVERSION:S/.//:E} +ICUMAJOR= ${PORTVERSION:S/.//:C,\..*,,g} +ICUMINOR= ${PORTVERSION:C/[0-9]\.[0-9]\.//} .if ${ICUMINOR} == "" ICUMINOR= 0 .endif |