icu: update to 4.2, new deps style, subpkgs.

--HG--
extra : convert_revision : 7789759d3b5562bad42d90c5306120813aa92c0f
This commit is contained in:
Juan RP 2009-05-14 01:41:02 +02:00
parent 860b090f6d
commit fa6ab7dba5
6 changed files with 45 additions and 7 deletions

1
templates/icu-devel Symbolic link
View file

@ -0,0 +1 @@
icu

1
templates/icu-libs Symbolic link
View file

@ -0,0 +1 @@
icu

2
templates/icu/depends Normal file
View file

@ -0,0 +1,2 @@
abi_depends=4.2
api_depends=${abi_depends}

View file

@ -0,0 +1,16 @@
# Template file for 'icu-devel'.
#
short_desc="${short_desc} (development files)"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
Add_dependency run icu
do_install()
{
mkdir -p ${DESTDIR}/usr/lib ${DESTDIR}/usr/share
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/icu ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/share/icu ${DESTDIR}/usr/share
}

View file

@ -0,0 +1,15 @@
# Template file for 'icu-libs'.
#
short_desc="${short_desc} (shared libs)"
long_desc="${long_desc}
This package contains the shared libraries."
Add_dependency run glibc
Add_dependency run gcc-libstdc++
do_install()
{
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/libicu* ${DESTDIR}/usr/lib
}

View file

@ -1,13 +1,13 @@
# Template build file for 'icu'.
pkgname=icu
version=4.0
sourcepkg=$pkgname
version=4.2
wrksrc="icu/source"
distfiles="http://download.icu-project.org/files/icu4c/4.0/icu4c-4_0-src@.tgz"
distfiles="http://download.icu-project.org/files/icu4c/4.2/icu4c-4_2-src.tgz"
build_style=gnu_configure
make_cmd="$XBPS_MASTERDIR/bin/gmake"
short_desc="Robust and full-featured Unicode services"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=c80dc50b9177b60a0191ea095c4c1c3360d2c6f4
checksum=65ab82b70614adf759b1e94324178597f703ad17878513e4802ccc4f061408a5
long_desc="
The International Components for Unicode(ICU) is a C and C++ library that
provides robust and full-featured Unicode support on a wide variety of
@ -16,12 +16,15 @@ long_desc="
- Calendar support
- Character set conversions
- Collation (language-sensitive)
- Date & time formatting
- Date and time formatting
- Locales (140+ supported)
- Message catalogs (resources)
- Message formatting
- Normalization
- Number & currency formatting
- Number and currency formatting
- Time zones
- Transliteration
- Word, line & sentence breaks"
- Word, line and sentence breaks"
subpackages="devel libs"
Add_dependency run icu-libs