diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2009-09-28 16:24:07 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2009-09-28 16:24:07 +0000 |
commit | 1c415302d10cd8029b42a53693ff875bb8596ec1 (patch) | |
tree | 66375cfc624ed79333c31817d6ce05ca461c31c8 /dev-ml/pomap | |
parent | whitespace (diff) | |
download | gentoo-2-1c415302d10cd8029b42a53693ff875bb8596ec1.tar.gz gentoo-2-1c415302d10cd8029b42a53693ff875bb8596ec1.tar.bz2 gentoo-2-1c415302d10cd8029b42a53693ff875bb8596ec1.zip |
Remove old version using built_with_use.
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'dev-ml/pomap')
-rw-r--r-- | dev-ml/pomap/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ml/pomap/pomap-2.9.8.ebuild | 49 |
2 files changed, 4 insertions, 50 deletions
diff --git a/dev-ml/pomap/ChangeLog b/dev-ml/pomap/ChangeLog index 1a9708385222..746ecda7db88 100644 --- a/dev-ml/pomap/ChangeLog +++ b/dev-ml/pomap/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/pomap # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.20 2009/08/14 17:54:32 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.21 2009/09/28 16:24:07 betelgeuse Exp $ + + 28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> -pomap-2.9.8.ebuild: + Remove old version using built_with_use. 14 Aug 2009; Markus Meier <maekke@gentoo.org> pomap-2.9.9.ebuild: amd64/x86 stable, bug #280417 diff --git a/dev-ml/pomap/pomap-2.9.8.ebuild b/dev-ml/pomap/pomap-2.9.8.ebuild deleted file mode 100644 index 8c32f70fbf4a..000000000000 --- a/dev-ml/pomap/pomap-2.9.8.ebuild +++ /dev/null @@ -1,49 +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/pomap/pomap-2.9.8.ebuild,v 1.4 2009/06/21 12:51:47 aballier Exp $ - -EAPI="1" - -inherit findlib eutils - -DESCRIPTION="Partially Ordered Map ADT for O'Caml" -HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html" -LICENSE="LGPL-2.1" -RDEPEND=">=dev-lang/ocaml-3.06" -DEPEND="${RDEPEND}" -SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.bz2" - -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="examples +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() { - cd "${S}/lib" - emake -j1 byte-code-library || die "failed to build byte code library" - if use ocamlopt; then - emake -j1 native-code-library || die "failed to built nativde code library" - fi -} - -src_install () { - use ocamlopt || export OCAMLFIND_INSTFLAGS="-optional" - findlib_src_install - - # install documentation - dodoc README VERSION Changes - - #install examples - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi -} |