summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-02-23 20:28:00 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-02-23 20:28:00 +0000
commitb9fdf9f5822e8ace3bb89a7c5e5b44418221c028 (patch)
treef0a4fcf0362042b52da20bf01adfea2c8f4d69be /dev-ml/pxp
parentMarking libmcs-0.7.2 ppc for bug 403719 (diff)
downloadgentoo-2-b9fdf9f5822e8ace3bb89a7c5e5b44418221c028.tar.gz
gentoo-2-b9fdf9f5822e8ace3bb89a7c5e5b44418221c028.tar.bz2
gentoo-2-b9fdf9f5822e8ace3bb89a7c5e5b44418221c028.zip
remove old
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/pxp')
-rw-r--r--dev-ml/pxp/ChangeLog5
-rw-r--r--dev-ml/pxp/pxp-1.2.1.ebuild50
2 files changed, 4 insertions, 51 deletions
diff --git a/dev-ml/pxp/ChangeLog b/dev-ml/pxp/ChangeLog
index dcf904a844fb..6fbfc2eeff25 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.25 2012/01/15 15:50:34 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.26 2012/02/23 20:27:59 aballier Exp $
+
+ 23 Feb 2012; Alexis Ballier <aballier@gentoo.org> -pxp-1.2.1.ebuild:
+ remove old
15 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> pxp-1.2.2.ebuild:
x86 stable wrt bug #396913
diff --git a/dev-ml/pxp/pxp-1.2.1.ebuild b/dev-ml/pxp/pxp-1.2.1.ebuild
deleted file mode 100644
index a2a8c3d3a370..000000000000
--- a/dev-ml/pxp/pxp-1.2.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/pxp-1.2.1.ebuild,v 1.4 2009/11/25 09:40:44 maekke 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
-}