blob: 641739f88d8a2108fa9f6e8d5a4ecf5880eedaa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# 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.2.1.ebuild,v 1.13 2010/06/16 19:50:33 patrick Exp $
EAPI="2"
inherit eutils flag-o-matic versionator
DESCRIPTION="International Components for Unicode"
HOMEPAGE="http://www.icu-project.org/ http://ibm.com/software/globalization/icu/"
BASEURI="http://download.icu-project.org/files/${PN}4c/${PV}"
DOCS_PV="$(get_version_component_range 1-2)"
DOCS_BASEURI="http://download.icu-project.org/files/${PN}4c/${DOCS_PV}"
DOCS_PV="${DOCS_PV/./_}"
SRCPKG="${PN}4c-${PV//./_}-src.tgz"
APIDOCS="${PN}4c-${DOCS_PV}-docs.zip"
SRC_URI="${BASEURI}/${SRCPKG}
doc? ( ${DOCS_BASEURI}/${APIDOCS} )"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="debug doc examples"
DEPEND="doc? ( app-arch/unzip )"
RDEPEND=""
S="${WORKDIR}/${PN}/source"
pkg_setup() {
# ICU fails to build with enabled optimizations (bug #296901).
if use arm || use ia64 || use sparc; then
filter-flags -O*
fi
}
src_unpack() {
unpack ${SRCPKG}
if use doc; then
mkdir apidocs
pushd apidocs > /dev/null
unpack ${APIDOCS}
popd > /dev/null
fi
}
src_prepare() {
# Do not hardcode used CFLAGS, LDFLAGS etc. into icu-config
# Bug 202059
# http://bugs.icu-project.org/trac/ticket/6102
for x in ARFLAGS CFLAGS CPPFLAGS CXXFLAGS FFLAGS LDFLAGS; do
sed -i -e "/^${x} =.*/s:@${x}@::" "config/Makefile.inc.in" || die "sed failed"
done
epatch "${FILESDIR}/${P}-fix_misoptimizations.patch"
epatch "${FILESDIR}/${P}-pkgdata.patch"
epatch "${FILESDIR}/${P}-pkgdata-build_data_without_assembly.patch"
}
src_configure() {
econf \
--enable-static \
$(use_enable debug) \
$(use_enable examples samples)
}
src_test() {
emake -j1 check || die "emake check failed"
}
src_install() {
emake -j1 DESTDIR="${D}" install || die "emake install failed"
dohtml ../readme.html
dodoc ../unicode-license.txt
if use doc; then
insinto /usr/share/doc/${PF}/html/apidocs
doins -r "${WORKDIR}"/apidocs/*
fi
}
|