summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-ml/pxp/ChangeLog7
-rw-r--r--dev-ml/pxp/pxp-1.2.2.ebuild50
2 files changed, 5 insertions, 52 deletions
diff --git a/dev-ml/pxp/ChangeLog b/dev-ml/pxp/ChangeLog
index 5ada2499e199..2cf7abb735bd 100644
--- a/dev-ml/pxp/ChangeLog
+++ b/dev-ml/pxp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/pxp
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.31 2012/08/22 15:26:05 johu Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.32 2013/03/06 11:43:22 aballier Exp $
+
+ 06 Mar 2013; Alexis Ballier <aballier@gentoo.org> -pxp-1.2.2.ebuild:
+ remove old
22 Aug 2012; Johannes Huber <johu@gentoo.org> pxp-1.2.3.ebuild:
Stable for x86, wrt bug #428976
diff --git a/dev-ml/pxp/pxp-1.2.2.ebuild b/dev-ml/pxp/pxp-1.2.2.ebuild
deleted file mode 100644
index 7caf46df91b6..000000000000
--- a/dev-ml/pxp/pxp-1.2.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.2.ebuild,v 1.3 2012/01/15 15:50:34 phajdan.jr 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
-}