summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-05-05 14:29:26 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-05-05 14:29:26 +0000
commit8823c0245906db73b558a6a4e841ac2016b7f538 (patch)
treed99dc5d3e70219daa56008fa340883fef3f36023 /dev-ml
parentremove old (diff)
downloadgentoo-2-8823c0245906db73b558a6a4e841ac2016b7f538.tar.gz
gentoo-2-8823c0245906db73b558a6a4e841ac2016b7f538.tar.bz2
gentoo-2-8823c0245906db73b558a6a4e841ac2016b7f538.zip
removeo ld
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/xmlm/ChangeLog5
-rw-r--r--dev-ml/xmlm/xmlm-1.0.2.ebuild39
2 files changed, 4 insertions, 40 deletions
diff --git a/dev-ml/xmlm/ChangeLog b/dev-ml/xmlm/ChangeLog
index 4ba03b851a3b..425d14441551 100644
--- a/dev-ml/xmlm/ChangeLog
+++ b/dev-ml/xmlm/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/xmlm
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/xmlm/ChangeLog,v 1.4 2012/03/27 21:25:52 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/xmlm/ChangeLog,v 1.5 2012/05/05 14:29:26 aballier Exp $
+
+ 05 May 2012; Alexis Ballier <aballier@gentoo.org> -xmlm-1.0.2.ebuild:
+ remove old
27 Mar 2012; Alexis Ballier <aballier@gentoo.org> xmlm-1.1.0.ebuild:
use OASIS_BUILD_TESTS
diff --git a/dev-ml/xmlm/xmlm-1.0.2.ebuild b/dev-ml/xmlm/xmlm-1.0.2.ebuild
deleted file mode 100644
index fd76d4a30389..000000000000
--- a/dev-ml/xmlm/xmlm-1.0.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/xmlm/xmlm-1.0.2.ebuild,v 1.2 2011/04/10 07:11:06 tove Exp $
-
-EAPI=3
-
-DESCRIPTION="Ocaml XML manipulation module"
-HOMEPAGE="http://erratique.ch/software/xmlm"
-SRC_URI="http://erratique.ch/software/${PN}/releases/${P}.tbz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc +ocamlopt"
-
-DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- ./build module-byte || die "bytecode failed"
- if use ocamlopt ; then
- ./build module-native && ./build module-plugin || die "native code failed"
- fi
- if use doc ; then
- ./build doc || die "doc building failed"
- fi
-}
-
-src_install() {
- export INSTALLDIR=${D}/`ocamlc -where`/${PN}
- if use ocamlopt ; then
- ./build install || die "install failed"
- ./build install-plugin || die "install-plugin failed"
- else
- ./build install-byte || die "install failed"
- fi
- dodoc CHANGES README || die
- use doc && dohtml doc/*
-}