diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-09-02 18:06:25 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-09-02 18:06:25 +0000 |
commit | c58b443592005c55f1f1d15a6a99c35ea4666dde (patch) | |
tree | 2825ff605e96b74742e39c75e3e96171a085b0d9 /dev-ml | |
parent | remove unused versions (diff) | |
download | gentoo-2-c58b443592005c55f1f1d15a6a99c35ea4666dde.tar.gz gentoo-2-c58b443592005c55f1f1d15a6a99c35ea4666dde.tar.bz2 gentoo-2-c58b443592005c55f1f1d15a6a99c35ea4666dde.zip |
remove old
(Portage version: 2.2_rc8/cvs/Linux 2.6.26.3 x86_64)
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/camlimages/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ml/camlimages/camlimages-2.20.ebuild | 87 |
2 files changed, 4 insertions, 88 deletions
diff --git a/dev-ml/camlimages/ChangeLog b/dev-ml/camlimages/ChangeLog index f9b547c7eefc..c5888eaf107a 100644 --- a/dev-ml/camlimages/ChangeLog +++ b/dev-ml/camlimages/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/camlimages # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlimages/ChangeLog,v 1.15 2008/08/17 17:23:28 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlimages/ChangeLog,v 1.16 2008/09/02 18:06:25 aballier Exp $ + + 02 Sep 2008; Alexis Ballier <aballier@gentoo.org> -camlimages-2.20.ebuild: + remove old 17 Aug 2008; Markus Meier <maekke@gentoo.org> camlimages-2.20-r2.ebuild: x86 stable, bug #234565 diff --git a/dev-ml/camlimages/camlimages-2.20.ebuild b/dev-ml/camlimages/camlimages-2.20.ebuild deleted file mode 100644 index 433ec57fb29d..000000000000 --- a/dev-ml/camlimages/camlimages-2.20.ebuild +++ /dev/null @@ -1,87 +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/camlimages/camlimages-2.20.ebuild,v 1.7 2008/01/27 14:22:57 aballier Exp $ - -inherit findlib eutils - -IUSE="gtk opengl" - -DESCRIPTION="An image manipulation library for ocaml" -HOMEPAGE="http://pauillac.inria.fr/camlimages/" -SRC_URI="ftp://ftp.inria.fr/INRIA/caml-light/bazar-ocaml/${P/20/2}.tgz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 x86 ppc" - -DEPEND=">=dev-lang/ocaml-3.08 - gtk? ( dev-ml/lablgtk ) - opengl? ( dev-ml/lablgl ) - media-libs/giflib - media-libs/libpng - media-libs/jpeg - media-libs/tiff - x11-libs/libXpm - >=media-libs/freetype-2 - virtual/ghostscript" - -MY_S="${WORKDIR}/${P/20/2}" - -pkg_setup() { - if ! built_with_use --missing true dev-lang/ocaml ocamlopt; then - eerror "${PN} needs to be built 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_unpack() { - unpack ${A} - cd ${MY_S} - if has_version ">=dev-lang/ocaml-3.09"; - then - epatch "${FILESDIR}/${P}-ocaml-3.09.diff" - fi -} - -src_compile() { - local myconf - - cd ${MY_S} - if !(use gtk); - then - myconf="--with-lablgtk=/dev/null --with-lablgtk2=/dev/null" - fi - - if !(use opengl); - then - myconf="$myconf --with-lablgl=/dev/null" - fi - - econf ${myconf} || die - emake -j1 || die - emake -j1 opt || die -} - -src_test() { - cd ${MY_S}/test - make - ./test - ./test.byt -} - -src_install() { - # Use findlib to install properly, especially to avoid - # the shared library mess - findlib_src_preinst - mkdir "${T}/tmp" - cd ${MY_S} - make CAMLDIR="${T}/tmp" \ - LIBDIR="${T}/tmp" \ - DESTDIR="${T}/tmp" \ - install || die - sed -e "s/VERSION/${PV}/" "${FILESDIR}/META" > "${T}/tmp/META" - - ocamlfind install camlimages "${T}"/tmp/* -} |