summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2015-01-19 10:14:15 +0000
committerAlexis Ballier <aballier@gentoo.org>2015-01-19 10:14:15 +0000
commit848885f8907c2e279b18d26c096d75fa42133553 (patch)
tree455dd55c0665e16bc51806e48eeed2caf7e562a0 /dev-ml
parentversion bump (diff)
downloadgentoo-2-848885f8907c2e279b18d26c096d75fa42133553.tar.gz
gentoo-2-848885f8907c2e279b18d26c096d75fa42133553.tar.bz2
gentoo-2-848885f8907c2e279b18d26c096d75fa42133553.zip
remove old
Signed-off-by: aballier@gentoo.org (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/pxp/ChangeLog5
-rw-r--r--dev-ml/pxp/pxp-1.2.3.ebuild50
2 files changed, 4 insertions, 51 deletions
diff --git a/dev-ml/pxp/ChangeLog b/dev-ml/pxp/ChangeLog
index c6e09b33a447..a3591b063801 100644
--- a/dev-ml/pxp/ChangeLog
+++ b/dev-ml/pxp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/pxp
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.38 2015/01/19 10:13:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.39 2015/01/19 10:14:15 aballier Exp $
+
+ 19 Jan 2015; Alexis Ballier <aballier@gentoo.org> -pxp-1.2.3.ebuild:
+ remove old
*pxp-1.2.7 (19 Jan 2015)
diff --git a/dev-ml/pxp/pxp-1.2.3.ebuild b/dev-ml/pxp/pxp-1.2.3.ebuild
deleted file mode 100644
index c92ee9bb8966..000000000000
--- a/dev-ml/pxp/pxp-1.2.3.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 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.6 2013/03/06 12:01:54 aballier Exp $
-
-EAPI="5"
-
-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="MIT"
-KEYWORDS="amd64 ~ppc x86"
-
-SLOT="0/${PV}"
-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
- if use ocamlopt; then
- emake -j1 opt
- fi
-}
-
-src_install() {
- findlib_src_install
- if use examples; then
- dodoc -r examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
-
- cd doc
- dodoc ABOUT-FINDLIB README SPEC design.txt
-}