summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ml/camlzip/files/camlzip-1.03-Makefile-findlib.patch')
-rw-r--r--dev-ml/camlzip/files/camlzip-1.03-Makefile-findlib.patch36
1 files changed, 0 insertions, 36 deletions
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