summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-09-20 13:31:29 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-09-20 13:31:29 +0000
commite0f0a4de99f46a3c276f84985cc45c1ab23fb9d3 (patch)
tree591e5c5ecb929c687b913ceb96cd525025d4dee1 /dev-ml/ounit
parentremove old (diff)
downloadgentoo-2-e0f0a4de99f46a3c276f84985cc45c1ab23fb9d3.tar.gz
gentoo-2-e0f0a4de99f46a3c276f84985cc45c1ab23fb9d3.tar.bz2
gentoo-2-e0f0a4de99f46a3c276f84985cc45c1ab23fb9d3.zip
remove old
(Portage version: 2.2_rc41/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.0.2.ebuild40
2 files changed, 4 insertions, 41 deletions
diff --git a/dev-ml/ounit/ChangeLog b/dev-ml/ounit/ChangeLog
index b18df5ecccab..f1c5e2f5b7dd 100644
--- a/dev-ml/ounit/ChangeLog
+++ b/dev-ml/ounit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/ounit
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.17 2009/08/14 17:51:53 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.18 2009/09/20 13:31:29 aballier Exp $
+
+ 20 Sep 2009; Alexis Ballier <aballier@gentoo.org> -ounit-1.0.2.ebuild:
+ remove old
14 Aug 2009; Markus Meier <maekke@gentoo.org> ounit-1.0.3.ebuild:
amd64/x86 stable, bug #280416
diff --git a/dev-ml/ounit/ounit-1.0.2.ebuild b/dev-ml/ounit/ounit-1.0.2.ebuild
deleted file mode 100644
index 49a3457fafbf..000000000000
--- a/dev-ml/ounit/ounit-1.0.2.ebuild
+++ /dev/null
@@ -1,40 +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/ounit/ounit-1.0.2.ebuild,v 1.7 2009/06/20 15:32:42 aballier Exp $
-
-EAPI="1"
-
-inherit findlib eutils
-
-DESCRIPTION="Unit testing framework for OCaml"
-HOMEPAGE="http://www.xs4all.nl/~mmzeeman/ocaml/"
-SRC_URI="http://www.xs4all.nl/~mmzeeman/ocaml/${P}.tar.gz"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-DEPEND="dev-lang/ocaml"
-RDEPEND="${DEPEND}"
-IUSE="+ocamlopt"
-
-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() {
- emake all || die "emake failed"
- if use ocamlopt; then
- emake allopt || die "failed to build native code"
- fi
-}
-
-src_install() {
- findlib_src_install
-
- # install documentation
- dodoc README changelog
-}