summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradrianp <adrianp@pkgsrc.org>2005-02-04 22:58:09 +0000
committeradrianp <adrianp@pkgsrc.org>2005-02-04 22:58:09 +0000
commitb54f4f3d40248d574386f90d84c68435d528a001 (patch)
tree12f6cf669b17a53e66985b1f0ea3d5bf279ea5e8
parent4643266fb514a21ef18204ca468116b4c8ceb6df (diff)
downloadpkgsrc-b54f4f3d40248d574386f90d84c68435d528a001.tar.gz
- Patch unison-devel so it now works with ocaml 3.08.2
- Bump to nb3 - Thanks to Antoine Reilles for supplying the patch
-rw-r--r--net/unison-devel/Makefile5
-rw-r--r--net/unison-devel/distinfo3
-rw-r--r--net/unison-devel/patches/patch-ad15
3 files changed, 20 insertions, 3 deletions
diff --git a/net/unison-devel/Makefile b/net/unison-devel/Makefile
index 48ee55986ca..31cbe4eb29d 100644
--- a/net/unison-devel/Makefile
+++ b/net/unison-devel/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2004/12/24 17:21:01 jmmv Exp $
+# $NetBSD: Makefile,v 1.6 2005/02/04 22:58:09 adrianp Exp $
DISTNAME= src
PKGNAME= unison-2.9.20
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= net
MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/beta-test/latest/
@@ -11,6 +11,7 @@ HOMEPAGE= http://www.cis.upenn.edu/~bcpierce/unison/
COMMENT= File-synchronization tool
PKG_INSTALLATION_TYPES= overwrite pkgviews
+BUILDLINK_DEPENDS.ocaml+= ocaml>=3.08.2
DIST_SUBDIR= ${PKGNAME_NOREV}
diff --git a/net/unison-devel/distinfo b/net/unison-devel/distinfo
index b557dadc6e5..25996dd6528 100644
--- a/net/unison-devel/distinfo
+++ b/net/unison-devel/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.2 2004/01/27 11:05:42 jlam Exp $
+$NetBSD: distinfo,v 1.3 2005/02/04 22:58:09 adrianp Exp $
SHA1 (unison-2.9.20/src.tar.gz) = 23d48f8dbcb2064241518375185bd2e7f50ab30f
Size (unison-2.9.20/src.tar.gz) = 363079 bytes
SHA1 (patch-aa) = 0b11802fb208e10fa07792738935761a170c0242
SHA1 (patch-ab) = 181f0e0823c3a27f91bf97726afd2ad91f18cbaf
SHA1 (patch-ac) = 254e997bfe7dff442722ad94a78c3a50f180dbc0
+SHA1 (patch-ad) = ad39edfff8ec01051ed1c72ac7337d4a6836e1b3
diff --git a/net/unison-devel/patches/patch-ad b/net/unison-devel/patches/patch-ad
new file mode 100644
index 00000000000..ee87a123977
--- /dev/null
+++ b/net/unison-devel/patches/patch-ad
@@ -0,0 +1,15 @@
+$NetBSD: patch-ad,v 1.1 2005/02/04 22:58:09 adrianp Exp $
+
+--- ubase/uprintf.ml.orig 2005-01-12 18:56:29.000000000 +0100
++++ ubase/uprintf.ml 2005-01-12 18:56:48.000000000 +0100
+@@ -10,8 +10,8 @@
+ (* *)
+ (***********************************************************************)
+
+-external format_int: string -> int -> string = "format_int"
+-external format_float: string -> float -> string = "format_float"
++external format_int: string -> int -> string = "caml_format_int"
++external format_float: string -> float -> string = "caml_format_float"
+
+ let fprintf outchan doafter format =
+ let format = (Obj.magic format : string) in