diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-06-12 12:42:34 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-06-12 12:42:34 +0000 |
commit | 941de308ce8ccef394fa83489ccad9b3f841de3d (patch) | |
tree | 157c4c98a53815d2961ba5ba9a992cfe3124ce6b /dev-ml/pxp/pxp-1.2.3.ebuild | |
parent | vcs-snapshot.eclass, remove old. (diff) | |
download | historical-941de308ce8ccef394fa83489ccad9b3f841de3d.tar.gz historical-941de308ce8ccef394fa83489ccad9b3f841de3d.tar.bz2 historical-941de308ce8ccef394fa83489ccad9b3f841de3d.zip |
version bump
Package-Manager: portage-2.2.0_alpha110/cvs/Linux x86_64
Diffstat (limited to 'dev-ml/pxp/pxp-1.2.3.ebuild')
-rw-r--r-- | dev-ml/pxp/pxp-1.2.3.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-ml/pxp/pxp-1.2.3.ebuild b/dev-ml/pxp/pxp-1.2.3.ebuild new file mode 100644 index 000000000000..3d983e2032ff --- /dev/null +++ b/dev-ml/pxp/pxp-1.2.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/pxp-1.2.3.ebuild,v 1.1 2012/06/12 12:41:42 aballier Exp $ + +EAPI="2" + +inherit findlib eutils + +MY_P=${P/_beta/test} + +DESCRIPTION="validating XML parser library for O'Caml" +HOMEPAGE="http://projects.camlcity.org/projects/pxp.html" +SRC_URI="http://download.camlcity.org/download/${MY_P}.tar.gz" + +LICENSE="as-is" +KEYWORDS="~amd64 ~ppc ~x86" + +SLOT="0" +DEPEND=">=dev-ml/pcre-ocaml-4.31 +>=dev-ml/ulex-0.5 +>=dev-ml/ocamlnet-0.98 +>=dev-lang/ocaml-3.10.2[ocamlopt?]" +RDEPEND="${DEPEND}" + +IUSE="examples +ocamlopt" + +S=${WORKDIR}/${MY_P} + +src_configure() { + #the included configure does not support many standard switches and is quite picky + ./configure || die "configure failed" +} + +src_compile() { + emake -j1 all || die "make all failed" + if use ocamlopt; then + emake -j1 opt || die "make opt failed" + fi +} + +src_install() { + findlib_src_install + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi + + cd doc + dodoc ABOUT-FINDLIB DEV README SPEC design.txt +} |