diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2005-04-23 01:34:05 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2005-04-23 01:34:05 +0000 |
commit | e7ce76c85c5d09dfbbeadf047a1d045b3e936af2 (patch) | |
tree | e541278b3278f6ce26af87b296ee431b73865711 /lang/ocaml/files | |
parent | Update to 1.3.1 (diff) |
o Update to 3.08.3
o Uphold both CFLAGS and INSTALL_* permission safeness
o Both sort and update PLIST
o Tested against net/mldonkey-devel for 24 hours
Notes
Notes:
svn path=/head/; revision=133975
Diffstat (limited to 'lang/ocaml/files')
-rw-r--r-- | lang/ocaml/files/patch-camlp4::lib::Makefile | 12 | ||||
-rw-r--r-- | lang/ocaml/files/patch-man::Makefile | 8 | ||||
-rw-r--r-- | lang/ocaml/files/patch-stdlib::Makefile | 12 |
3 files changed, 24 insertions, 8 deletions
diff --git a/lang/ocaml/files/patch-camlp4::lib::Makefile b/lang/ocaml/files/patch-camlp4::lib::Makefile new file mode 100644 index 000000000000..3b948cab8da5 --- /dev/null +++ b/lang/ocaml/files/patch-camlp4::lib::Makefile @@ -0,0 +1,12 @@ +--- camlp4/lib/Makefile.orig Fri Apr 22 05:28:15 2005 ++++ camlp4/lib/Makefile Fri Apr 22 05:28:41 2005 +@@ -49,7 +49,8 @@ + + installopt: + for f in $(TARGET:.cma=.cmxa) $(TARGET:.cma=.p.cmxa) *.cmx ; do \ +- test -f $$f && cp $$f "$(LIBDIR)/camlp4/." || true ; \ ++ test -f $$f && \ ++ cp $$f "$(LIBDIR)/camlp4/." || true ; \ + done + # Special treatment for this one: some versions of make don't like $(A) in $(TARGET:.cma=.$(A)) + target="`echo $(TARGET) | sed -e 's/\.cma$$/.$(A)/'`" ; \ diff --git a/lang/ocaml/files/patch-man::Makefile b/lang/ocaml/files/patch-man::Makefile deleted file mode 100644 index 6bde352d81f6..000000000000 --- a/lang/ocaml/files/patch-man::Makefile +++ /dev/null @@ -1,8 +0,0 @@ ---- man/Makefile.orig Thu Aug 1 21:43:47 2002 -+++ man/Makefile Thu Aug 1 21:44:03 2002 -@@ -18,5 +18,3 @@ - - install: - for i in *.m; do cp $$i $(DIR)/`basename $$i .m`.$(MANEXT); done -- echo '.so man$(MANEXT)/ocamlc.$(MANEXT)' > $(DIR)/ocamlc.opt.$(MANEXT) -- echo '.so man$(MANEXT)/ocamlopt.$(MANEXT)' > $(DIR)/ocamlopt.opt.$(MANEXT) diff --git a/lang/ocaml/files/patch-stdlib::Makefile b/lang/ocaml/files/patch-stdlib::Makefile new file mode 100644 index 000000000000..9ed197b03123 --- /dev/null +++ b/lang/ocaml/files/patch-stdlib::Makefile @@ -0,0 +1,12 @@ +--- stdlib/Makefile.bak Fri Apr 22 05:04:24 2005 ++++ stdlib/Makefile Fri Apr 22 05:13:40 2005 +@@ -47,8 +47,7 @@ + rm -f std_exit.p.cmi + + install: +- cp stdlib.cma std_exit.cmo *.cmi *.mli *.ml camlheader camlheader_ur \ +- $(LIBDIR) ++ cp stdlib.cma std_exit.cmo *.cmi *.mli *.ml camlheader camlheader_ur $(LIBDIR) + + installopt: installopt-default installopt-$(PROFILING) + |