blob: 7d086050fa05c7851a58ab48a7aa69805fc9e0f1 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-1.95.8.ebuild,v 1.21 2007/02/11 14:28:12 grobian Exp $
inherit libtool multilib
DESCRIPTION="XML parsing libraries"
HOMEPAGE="http://expat.sourceforge.net/"
SRC_URI="mirror://sourceforge/expat/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
IUSE="test"
DEPEND="test? ( >=dev-libs/check-0.8 )"
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
elibtoolize
}
src_test() {
if ! use test && [[ -z $(best_version dev-libs/check) ]] ; then
ewarn "You dont have USE=test and dev-libs/check is not installed."
ewarn "src_test will be skipped."
return 0
fi
make check || die "make check failed"
}
src_install() {
einstall man1dir="${D}/usr/share/man/man1" || die "einstall failed"
dosed /usr/$(get_libdir)/libexpat.la #81568
dodoc Changes README
dohtml doc/*
}
|