diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-11-28 02:36:56 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-11-28 02:36:56 +0000 |
commit | c1cd01e33cdf1feefc5a200de0b9b161f06ddd78 (patch) | |
tree | a325b9db1816755570f4c3a4c4176926eca3ea9f /dev-libs/icu/icu-4.6_rc2.ebuild | |
parent | Fix manifest (diff) | |
download | historical-c1cd01e33cdf1feefc5a200de0b9b161f06ddd78.tar.gz historical-c1cd01e33cdf1feefc5a200de0b9b161f06ddd78.tar.bz2 historical-c1cd01e33cdf1feefc5a200de0b9b161f06ddd78.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha6/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/icu/icu-4.6_rc2.ebuild')
-rw-r--r-- | dev-libs/icu/icu-4.6_rc2.ebuild | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/dev-libs/icu/icu-4.6_rc2.ebuild b/dev-libs/icu/icu-4.6_rc2.ebuild new file mode 100644 index 000000000000..739f62de38b3 --- /dev/null +++ b/dev-libs/icu/icu-4.6_rc2.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-4.6_rc2.ebuild,v 1.1 2010/11/28 02:36:56 arfrever Exp $ + +EAPI="3" + +inherit versionator + +#MAJOR_MINOR_VERSION="$(get_version_component_range 1-2)" +#MICRO_VERSION="$(get_version_component_range 3)" +MAJOR_MINOR_VERSION="$(get_version_component_range 1-3)" +MICRO_VERSION="$(get_version_component_range 4)" + +DESCRIPTION="International Components for Unicode" +HOMEPAGE="http://www.icu-project.org/" + +#BASE_URI="http://download.icu-project.org/files/icu4c/${PV}" +#DOCS_BASE_URI="http://download.icu-project.org/files/icu4c/${MAJOR_MINOR_VERSION}" +BASE_URI="http://download.icu-project.org/files/icu4c/${PV/_/}" +DOCS_BASE_URI="http://download.icu-project.org/files/icu4c/${PV/_/}" +SRC_ARCHIVE="icu4c-${PV//./_}-src.tgz" +DOCS_ARCHIVE="icu4c-${MAJOR_MINOR_VERSION//./_}-docs.zip" + +SRC_URI="${BASE_URI}/${SRC_ARCHIVE} + doc? ( ${DOCS_BASE_URI}/${DOCS_ARCHIVE} )" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="debug doc examples static-libs" + +DEPEND="doc? ( app-arch/unzip )" +RDEPEND="" + +S="${WORKDIR}/${PN}/source" + +#QA_DT_NEEDED="/usr/lib.*/libicudata.so.${MAJOR_MINOR_VERSION/./}.${MICRO_VERSION:-0}" +QA_DT_NEEDED="/usr/lib.*/libicudata.so.46.${MICRO_VERSION:-0}" + +src_unpack() { + unpack "${SRC_ARCHIVE}" + if use doc; then + mkdir docs + pushd docs > /dev/null + unpack "${DOCS_ARCHIVE}" + popd > /dev/null + fi +} + +src_prepare() { + # Do not hardcode flags into icu-config. + # https://ssl.icu-project.org/trac/ticket/6102 + local variable + for variable in ARFLAGS CFLAGS CPPFLAGS CXXFLAGS FFLAGS LDFLAGS; do + sed -i -e "/^${variable} =.*/s:@${variable}@::" config/Makefile.inc.in || die "sed failed" + done +} + +src_configure() { + econf \ + $(use_enable debug) \ + $(use_enable examples samples) \ + $(use_enable static-libs static) +} + +src_test() { + # INTLTEST_OPTS: intltest options + # -e: Exhaustive testing + # -l: Reporting of memory leaks + # -v: Increased verbosity + # IOTEST_OPTS: iotest options + # -e: Exhaustive testing + # -v: Increased verbosity + # CINTLTST_OPTS: cintltst options + # -e: Exhaustive testing + # -v: Increased verbosity + emake -j1 check || die "emake check failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dohtml ../readme.html + dodoc ../unicode-license.txt + if use doc; then + insinto /usr/share/doc/${PF}/html/api + doins -r "${WORKDIR}/docs/"* || die "doins failed" + fi +} |