blob: d4c4b41eb07a1cceb8fc0e2e11943805d9ebb358 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/pomap-2.9.4.ebuild,v 1.3 2004/08/25 13:44:28 mattam Exp $
inherit findlib
DESCRIPTION="Partially Ordered Map ADT for O'Caml"
HOMEPAGE="http://www.ai.univie.ac.at/~markus/home/ocaml_sources.html"
LICENSE="LGPL-2.1"
DEPEND=">=dev-lang/ocaml-3.06"
SRC_URI="http://www.oefai.at/~markus/ocaml_sources/${P}.tar.bz2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
src_compile() {
emake all || die
}
src_install () {
findlib_src_install
# install documentation
dodoc LICENSE README VERSION Changes
#install examples
mv ${S}/examples/ ${D}/usr/share/doc/${PF}/
}
|