blob: cb905e84e0b83b027fad4716af2e2b328a50dc8c (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmetadom/gmetadom-0.2.1-r1.ebuild,v 1.3 2004/09/03 15:31:49 pvdabeel Exp $
inherit 64-bit flag-o-matic eutils
DESCRIPTION="A library providing bindings for multiple languages of multiple C DOM implementations"
HOMEPAGE="http://gmetadom.sourceforge.net/"
SRC_URI="mirror://sourceforge/gmetadom/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ppc"
IUSE="ocaml"
RDEPEND=">=dev-libs/gdome2-0.8.0"
DEPEND="${RDEPEND}
>=dev-libs/libxslt-1.0.0
ocaml? ( >=dev-lang/ocaml-3.05
>=dev-ml/findlib-0.8 )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.patch
}
src_compile() {
local mymod="gdome_cpp_smart"
64-bit && append-flags -fPIC
use ocaml && mymod="${mymod} gdome_caml"
econf --with-modules="${mymod}" || die
#emake || die
make || die
}
src_install() {
local destdir=`ocamlfind printconf destdir`
make \
DESTDIR=${D} \
OCAMLINSTALLDIR=${D}${destdir}/gdome2 \
OCAMLFIND_LDCONF=dummy \
install || die
dodoc AUTHORS BUGS ChangeLog HISTORY LICENSE NEWS README
}
|