diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-03-06 11:45:34 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-03-06 11:45:34 +0000 |
commit | 94e0cef99a462721f0b797838edbd75bd18604b0 (patch) | |
tree | 5abcff59f64451eac3fccf667bbd406a3f7dbd67 /dev-ml | |
parent | remove old (diff) | |
download | gentoo-2-94e0cef99a462721f0b797838edbd75bd18604b0.tar.gz gentoo-2-94e0cef99a462721f0b797838edbd75bd18604b0.tar.bz2 gentoo-2-94e0cef99a462721f0b797838edbd75bd18604b0.zip |
remove old
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/camlzip/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ml/camlzip/camlzip-1.04.ebuild | 39 | ||||
-rw-r--r-- | dev-ml/camlzip/files/META | 5 | ||||
-rw-r--r-- | dev-ml/camlzip/files/camlzip-1.03-Makefile-findlib.patch | 36 |
4 files changed, 6 insertions, 81 deletions
diff --git a/dev-ml/camlzip/ChangeLog b/dev-ml/camlzip/ChangeLog index 18df7927a3be..d56a7f176770 100644 --- a/dev-ml/camlzip/ChangeLog +++ b/dev-ml/camlzip/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ml/camlzip # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v 1.25 2013/02/12 16:57:17 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v 1.26 2013/03/06 11:45:34 aballier Exp $ + + 06 Mar 2013; Alexis Ballier <aballier@gentoo.org> + -files/camlzip-1.03-Makefile-findlib.patch, -camlzip-1.04.ebuild, + -files/META: + remove old 12 Feb 2013; Agostino Sarubbo <ago@gentoo.org> camlzip-1.05.ebuild: Stable for ppc, wrt bug #456552 diff --git a/dev-ml/camlzip/camlzip-1.04.ebuild b/dev-ml/camlzip/camlzip-1.04.ebuild deleted file mode 100644 index 4dda4b87e62c..000000000000 --- a/dev-ml/camlzip/camlzip-1.04.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/camlzip/camlzip-1.04.ebuild,v 1.4 2011/04/27 17:58:49 angelos Exp $ - -EAPI="2" - -inherit findlib eutils - -IUSE="+ocamlopt" - -DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)" -HOMEPAGE="http://cristal.inria.fr/~xleroy/software.html#camlzip" -SRC_URI="http://caml.inria.fr/distrib/bazar-ocaml/${P}.tar.gz" - -SLOT="1" -LICENSE="LGPL-2.1" -KEYWORDS="amd64 ppc x86 ~x86-fbsd" - -RDEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?] - >=sys-libs/zlib-1.1.3" -DEPEND="${RDEPEND}" - -src_prepare() { - epatch "${FILESDIR}/${PN}-1.03-Makefile-findlib.patch" - sed -e "s/VERSION/${PV}/" "${FILESDIR}/META" >> META -} - -src_compile() { - emake all || die "Failed at compilation step !!!" - if use ocamlopt; then - emake allopt || die "Failed at ML compilation step !!!" - fi -} - -src_install() { - findlib_src_install - - dodoc README Changes -} diff --git a/dev-ml/camlzip/files/META b/dev-ml/camlzip/files/META deleted file mode 100644 index 988a4fc1185d..000000000000 --- a/dev-ml/camlzip/files/META +++ /dev/null @@ -1,5 +0,0 @@ -version="VERSION" -requires="unix" -linkopts="-cclib -lz" -archive(byte)="zip.cma" -archive(native)="zip.cmxa" diff --git a/dev-ml/camlzip/files/camlzip-1.03-Makefile-findlib.patch b/dev-ml/camlzip/files/camlzip-1.03-Makefile-findlib.patch deleted file mode 100644 index d388880ed1b3..000000000000 --- a/dev-ml/camlzip/files/camlzip-1.03-Makefile-findlib.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- Makefile.orig 2007-11-08 18:07:44.000000000 +0100 -+++ Makefile 2007-11-08 18:09:35.000000000 +0100 -@@ -19,10 +19,13 @@ - OCAMLOPT=ocamlopt - OCAMLDEP=ocamldep - OCAMLMKLIB=ocamlmklib -+OCAMLFIND=ocamlfind - - OBJS=zlib.cmo zip.cmo gzip.cmo - C_OBJS=zlibstubs.o - -+LIBINSTALL_FILES = $(wildcard *.mli *.cmi *.cma *.cmxa *.a *.so) -+ - all: libcamlzip.a zip.cma - - allopt: libcamlzip.a zip.cmxa -@@ -55,18 +58,7 @@ - rm -f *.o *.a - - install: -- mkdir -p $(INSTALLDIR) -- cp zip.cma zip.cmi gzip.cmi zip.mli gzip.mli libcamlzip.a $(INSTALLDIR) -- if test -f dllcamlzip.so; then \ -- cp dllcamlzip.so $(INSTALLDIR); \ -- ldconf=`$(OCAMLC) -where`/ld.conf; \ -- installdir=$(INSTALLDIR); \ -- if test `grep -s -c $$installdir'$$' $$ldconf || :` = 0; \ -- then echo $$installdir >> $$ldconf; fi \ -- fi -- --installopt: -- cp zip.cmxa zip.a zip.cmx gzip.cmx $(INSTALLDIR) -+ $(OCAMLFIND) install camlzip META $(LIBINSTALL_FILES) - - depend: - gcc -MM -I$(ZLIB_INCLUDE) *.c > .depend |