summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2012-06-12 12:44:08 +0000
committerAlexis Ballier <aballier@gentoo.org>2012-06-12 12:44:08 +0000
commit5ed215b04ec4525ec1c3835d5a7cc6e8fd8e76f0 (patch)
treea54b0f82cf5d7c03352ded6eaee8291e2382177a /dev-ml/ounit
parentversion bump (diff)
downloadgentoo-2-5ed215b04ec4525ec1c3835d5a7cc6e8fd8e76f0.tar.gz
gentoo-2-5ed215b04ec4525ec1c3835d5a7cc6e8fd8e76f0.tar.bz2
gentoo-2-5ed215b04ec4525ec1c3835d5a7cc6e8fd8e76f0.zip
remove old
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml/ounit')
-rw-r--r--dev-ml/ounit/ChangeLog5
-rw-r--r--dev-ml/ounit/ounit-1.1.0.ebuild46
2 files changed, 4 insertions, 47 deletions
diff --git a/dev-ml/ounit/ChangeLog b/dev-ml/ounit/ChangeLog
index a9a871d7fff0..e6d0c6babbe1 100644
--- a/dev-ml/ounit/ChangeLog
+++ b/dev-ml/ounit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/ounit
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.30 2012/06/12 12:42:34 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.31 2012/06/12 12:44:08 aballier Exp $
+
+ 12 Jun 2012; Alexis Ballier <aballier@gentoo.org> -ounit-1.1.0.ebuild:
+ remove old
*ounit-1.1.2 (12 Jun 2012)
diff --git a/dev-ml/ounit/ounit-1.1.0.ebuild b/dev-ml/ounit/ounit-1.1.0.ebuild
deleted file mode 100644
index 248be4ff1e29..000000000000
--- a/dev-ml/ounit/ounit-1.1.0.ebuild
+++ /dev/null
@@ -1,46 +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/ounit/ounit-1.1.0.ebuild,v 1.4 2011/01/13 22:16:36 ranger Exp $
-
-EAPI="2"
-
-inherit findlib multilib
-
-DESCRIPTION="Unit testing framework for OCaml"
-HOMEPAGE="http://ounit.forge.ocamlcore.org/"
-SRC_URI="https://forge.ocamlcore.org/frs/download.php/495/${P}.tar.gz"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
-RDEPEND="${DEPEND}"
-IUSE="debug doc +ocamlopt"
-
-oasis_use_enable() {
- echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`"
-}
-
-src_configure() {
- chmod +x configure
- ./configure --prefix usr \
- --libdir /usr/$(get_libdir) \
- --docdir /usr/share/doc/${PF}/html \
- --destdir "${D}" \
- $(oasis_use_enable debug debug) \
- $(oasis_use_enable ocamlopt is_native) \
- || die
-}
-
-src_compile() {
- emake || die
- if use doc ; then
- emake doc || die
- fi
-}
-
-src_install() {
- findlib_src_install
-
- # install documentation
- dodoc README* AUTHORS* changelog || die
-}