summaryrefslogtreecommitdiff
path: root/databases/ocaml-pgocaml/files
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2009-03-02 00:22:36 +0000
committerPav Lucistnik <pav@FreeBSD.org>2009-03-02 00:22:36 +0000
commit0c92b1096252f7366b9f29b402d9dc873721a074 (patch)
tree8a3ef4eeb52991ba61f231fef655cc9b7409ec39 /databases/ocaml-pgocaml/files
parent- Correct META file (fixes ocaml-pgocaml) (diff)
- Update to 1.1
Submitted by: Thomas Crimi <tcrimi@gmail.com> (maintainer)
Notes
Notes: svn path=/head/; revision=229310
Diffstat (limited to 'databases/ocaml-pgocaml/files')
-rw-r--r--databases/ocaml-pgocaml/files/patch-Makefile14
-rw-r--r--databases/ocaml-pgocaml/files/patch-pGOCaml.ml10
-rw-r--r--databases/ocaml-pgocaml/files/patch-pGOCaml.mli11
3 files changed, 21 insertions, 14 deletions
diff --git a/databases/ocaml-pgocaml/files/patch-Makefile b/databases/ocaml-pgocaml/files/patch-Makefile
index 3dc77d5d62fa..208039919c76 100644
--- a/databases/ocaml-pgocaml/files/patch-Makefile
+++ b/databases/ocaml-pgocaml/files/patch-Makefile
@@ -20,17 +20,3 @@
ifeq ($(wildcard .depend),.depend)
include .depend
-@@ -109,11 +109,11 @@
- # Install.
-
- findlib_install:
-- ocamlfind install pgocaml META pgocaml.{,cm{,x}}a pGOCaml.cm[ix] pa_pgsql.cmo
-+ ocamlfind install pgocaml META pgocaml.*a pGOCaml.cm[ix] pa_pgsql.cmo
-
- reinstall:
- ocamlfind remove pgocaml
-- ocamlfind install pgocaml META pgocaml.{,cm{,x}}a pGOCaml.cm[ix] pa_pgsql.cmo
-+ ocamlfind install pgocaml META pgocaml.*a pGOCaml.cm[ix] pa_pgsql.cmo
-
- install:
- rm -rf $(DESTDIR)$(OCAMLLIBDIR)/pgocaml
diff --git a/databases/ocaml-pgocaml/files/patch-pGOCaml.ml b/databases/ocaml-pgocaml/files/patch-pGOCaml.ml
new file mode 100644
index 000000000000..a8063e954a4e
--- /dev/null
+++ b/databases/ocaml-pgocaml/files/patch-pGOCaml.ml
@@ -0,0 +1,10 @@
+--- pGOCaml.ml.orig 2009-03-01 09:59:13.864728737 -0500
++++ pGOCaml.ml 2009-03-01 09:59:53.353002107 -0500
+@@ -22,6 +22,7 @@
+
+ open Printf
+ open ExtString
++open CalendarLib
+
+ type 'a t = {
+ ichan : in_channel; (* In_channel wrapping socket. *)
diff --git a/databases/ocaml-pgocaml/files/patch-pGOCaml.mli b/databases/ocaml-pgocaml/files/patch-pGOCaml.mli
new file mode 100644
index 000000000000..169e264c41bd
--- /dev/null
+++ b/databases/ocaml-pgocaml/files/patch-pGOCaml.mli
@@ -0,0 +1,11 @@
+--- pGOCaml.mli.orig 2009-03-01 09:59:09.188523102 -0500
++++ pGOCaml.mli 2009-03-01 09:59:43.562605632 -0500
+@@ -20,6 +20,8 @@
+ * Boston, MA 02111-1307, USA.
+ *)
+
++open CalendarLib
++
+ type 'a t (** Database handle. *)
+
+ exception Error of string