summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-02-04 07:59:04 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-02-04 07:59:04 +0000
commit1892630d574844a673331a108fafa2e0e0dbd8dc (patch)
treea5a85763b6c3eeeb4724cde963ee9580175d4bee /dev-ml/pxp
parentversion bump (diff)
downloadgentoo-2-1892630d574844a673331a108fafa2e0e0dbd8dc.tar.gz
gentoo-2-1892630d574844a673331a108fafa2e0e0dbd8dc.tar.bz2
gentoo-2-1892630d574844a673331a108fafa2e0e0dbd8dc.zip
remove old beta
(Portage version: 2.2_rc23/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.0_beta2.ebuild55
2 files changed, 4 insertions, 56 deletions
diff --git a/dev-ml/pxp/ChangeLog b/dev-ml/pxp/ChangeLog
index c109dc4fab24..91082bab8176 100644
--- a/dev-ml/pxp/ChangeLog
+++ b/dev-ml/pxp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/pxp
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.15 2009/02/04 07:57:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.16 2009/02/04 07:59:04 aballier Exp $
+
+ 04 Feb 2009; Alexis Ballier <aballier@gentoo.org> -pxp-1.2.0_beta2.ebuild:
+ remove old beta
*pxp-1.2.1 (04 Feb 2009)
diff --git a/dev-ml/pxp/pxp-1.2.0_beta2.ebuild b/dev-ml/pxp/pxp-1.2.0_beta2.ebuild
deleted file mode 100644
index 3508cf71f25d..000000000000
--- a/dev-ml/pxp/pxp-1.2.0_beta2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/pxp-1.2.0_beta2.ebuild,v 1.1 2008/04/09 07:59:20 aballier Exp $
-
-EAPI="1"
-
-inherit findlib eutils
-
-MY_P=${P/_beta/test}
-
-DESCRIPTION="validating XML parser library for O'Caml"
-HOMEPAGE="http://www.ocaml-programming.de/packages/documentation/pxp/index_dev.html"
-SRC_URI="http://www.ocaml-programming.de/packages/${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.09"
-
-IUSE="examples +ocamlopt"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
- eerror "In order to build ${PN} with native code support from ocaml"
- eerror "You first need to have a native code ocaml compiler."
- eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
- die "Please install ocaml with ocamlopt useflag"
- fi
-}
-
-src_compile() {
- #the included configure does not support many standard switches and is quite picky
- ./configure || die "configure failed"
- 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 EXTENSIONS README SPEC design.txt
-}