diff options
author | beech <beech@FreeBSD.org> | 2009-01-30 11:52:43 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2009-01-30 11:52:43 +0800 |
commit | 2abbf7ed2b3bdb11dd5fd6f9b9952c065d23f67f (patch) | |
tree | 832456909376da2257572c6e9a47a3b9d57b12b9 /archivers | |
parent | 3fbcc1fb0f2fd23c3cdce907b903b579ebc01b58 (diff) | |
download | freebsd-ports-gnome-2abbf7ed2b3bdb11dd5fd6f9b9952c065d23f67f.tar.gz freebsd-ports-gnome-2abbf7ed2b3bdb11dd5fd6f9b9952c065d23f67f.tar.zst freebsd-ports-gnome-2abbf7ed2b3bdb11dd5fd6f9b9952c065d23f67f.zip |
- Install a META file for use with ocaml-findlib (findlib is still not
necessary to install or run the port, but if it is there, it will detect the
port);
- Install files (zlib.cmi and zlib.mli) needed by www/ocsigen.
- Bump portrevision
PR: ports/130507
Submitted by: Jaap Boender <jaapb@kerguelen.org>
Approved by: stas (maintainer)
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/ocaml-zip/Makefile | 3 | ||||
-rw-r--r-- | archivers/ocaml-zip/files/META | 8 | ||||
-rw-r--r-- | archivers/ocaml-zip/files/patch-Makefile | 11 |
3 files changed, 21 insertions, 1 deletions
diff --git a/archivers/ocaml-zip/Makefile b/archivers/ocaml-zip/Makefile index 14a76b134421..5c17c12985dd 100644 --- a/archivers/ocaml-zip/Makefile +++ b/archivers/ocaml-zip/Makefile @@ -8,7 +8,7 @@ PORTNAME= zip PORTVERSION= 1.03 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers MASTER_SITES= http://caml.inria.fr/distrib/bazar-ocaml/ PKGNAMEPREFIX= ocaml- @@ -47,6 +47,7 @@ pre-install: .endif post-install: + @${INSTALL_DATA} ${FILESDIR}/META ${OCAMLFIND_DESTDIR}/${PORTNAME} @${FIND} ${OCAMLFIND_DESTDIR}/${PORTNAME} -type f | \ ${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} @${ECHO_CMD} "@dirrm ${OCAML_SITELIBDIR}/${PORTNAME}" >> ${TMPPLIST} diff --git a/archivers/ocaml-zip/files/META b/archivers/ocaml-zip/files/META new file mode 100644 index 000000000000..b3b1adeb298d --- /dev/null +++ b/archivers/ocaml-zip/files/META @@ -0,0 +1,8 @@ +name="zip" +version="1.03" +description="reading and writing ZIP, JAR and GZIP files" +requires="unix" +archive(byte)="zip.cma" +archive(native)="zip.cmxa" +linkopts = "" + diff --git a/archivers/ocaml-zip/files/patch-Makefile b/archivers/ocaml-zip/files/patch-Makefile new file mode 100644 index 000000000000..c1a829da750c --- /dev/null +++ b/archivers/ocaml-zip/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig 2009-01-13 14:56:33.000000000 +0100 ++++ Makefile 2009-01-13 14:56:52.000000000 +0100 +@@ -56,7 +56,7 @@ + + install: + mkdir -p $(INSTALLDIR) +- ${BSD_INSTALL_DATA} zip.cma zip.cmi gzip.cmi zip.mli gzip.mli libcamlzip.a $(INSTALLDIR) ++ ${BSD_INSTALL_DATA} zip.cma zip.cmi gzip.cmi zip.mli gzip.mli zlib.cmi zlib.mli libcamlzip.a $(INSTALLDIR) + if test -f dllcamlzip.so; then \ + ${BSD_INSTALL_DATA} dllcamlzip.so $(INSTALLDIR); \ + installdir=$(INSTALLDIR); \ |