diff options
Diffstat (limited to 'dev-libs/icu')
-rw-r--r-- | dev-libs/icu/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/icu/files/digest-icu-3.4.1 | 3 | ||||
-rw-r--r-- | dev-libs/icu/icu-3.4.1.ebuild | 26 |
3 files changed, 36 insertions, 2 deletions
diff --git a/dev-libs/icu/ChangeLog b/dev-libs/icu/ChangeLog index 833dfcb74742..fb3b106fd721 100644 --- a/dev-libs/icu/ChangeLog +++ b/dev-libs/icu/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/icu -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.35 2005/11/10 03:18:25 weeve Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.36 2006/08/15 07:25:29 sebastian Exp $ + +*icu-3.4.1 (15 Aug 2006) + + 15 Aug 2006; Sebastian Bergmann <sebastian@gentoo.org> +icu-3.4.1.ebuild: + Version bump. 10 Nov 2005; Jason Wever <weeve@gentoo.org> icu-3.4.ebuild: Added ~sparc keyword as it went the way of the dodo in the version bump. diff --git a/dev-libs/icu/files/digest-icu-3.4.1 b/dev-libs/icu/files/digest-icu-3.4.1 new file mode 100644 index 000000000000..c670492ecfea --- /dev/null +++ b/dev-libs/icu/files/digest-icu-3.4.1 @@ -0,0 +1,3 @@ +MD5 2a16f58bcb26e5010c946dca9ec08d5f icu-3.4.1.tgz 9320610 +RMD160 fe8a189ec70dc2c92ccf61956a5982443fc73062 icu-3.4.1.tgz 9320610 +SHA256 bbeab775bfd46c4882b589bdde3f6e469b7834d4738c44df1cef671dfe436959 icu-3.4.1.tgz 9320610 diff --git a/dev-libs/icu/icu-3.4.1.ebuild b/dev-libs/icu/icu-3.4.1.ebuild new file mode 100644 index 000000000000..3395bd42b492 --- /dev/null +++ b/dev-libs/icu/icu-3.4.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-3.4.1.ebuild,v 1.1 2006/08/15 07:25:29 sebastian Exp $ + +DESCRIPTION="IBM Internationalization Components for Unicode" +SRC_URI="ftp://ftp.software.ibm.com/software/globalization/icu/${PV}/${P}.tgz" +HOMEPAGE="http://ibm.com/software/globalization/icu/" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~ppc-macos ~sparc ~x86" +IUSE="" + +DEPEND="virtual/libc" + +S="${WORKDIR}/${PN}/source" + +src_compile() { + econf || die "econf failed" + emake -j1 || die "emake failed" # bug 102426 +} + +src_install () { + make DESTDIR="${D}" install || die "make install failed" + dohtml ../readme.html ../license.html +} |