blob: 8db02d3ca8eb0e604548b7f208d8e462911f6125 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xerces-c/xerces-c-2.3.0-r2.ebuild,v 1.1 2003/06/16 04:08:44 zhen Exp $
MY_PV=${PV//./_}
DESCRIPTION="Xerces-C++ is a validating XML parser written in a portable subset of C++."
SRC_URI="http://xml.apache.org/dist/xerces-c/stable/${PN}-src_${MY_PV}.tar.gz"
HOMEPAGE="http://xml.apache.org/xerces-c/index.html"
DEPEND="virtual/glibc"
#RDEPEND=""
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="doc"
S=${WORKDIR}/${PN}-src_${MY_PV}
src_compile() {
export XERCESCROOT=${S}
cd src/xercesc
./configure || die
# emake does NOT work!!!
make || die
}
src_install () {
cd src/xercesc
make PREFIX="${D}/usr" install
dolib lib/libxerces-c.so.23.0
if [ "`use doc`" ]; then
dodir /usr/share/doc/${P}
cp -a ${S}/samples ${D}/usr/share/doc/${P}
dohtml -r doc/html
fi
cd ${S}
dodoc STATUS LICENSE LICENSE.txt credits.txtles version.incl xerces-c.spec
dohtml Readme.html
unset XERCESCROOT
}
|