diff options
author | adrianp <adrianp> | 2005-02-04 22:58:09 +0000 |
---|---|---|
committer | adrianp <adrianp> | 2005-02-04 22:58:09 +0000 |
commit | 80c123ce6c55ab2bd03ca35ed671c6f5dccdce99 (patch) | |
tree | 12f6cf669b17a53e66985b1f0ea3d5bf279ea5e8 /net | |
parent | a2cb0069287eacc1ef9e3b96ef11b2564e674ccc (diff) | |
download | pkgsrc-80c123ce6c55ab2bd03ca35ed671c6f5dccdce99.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
Diffstat (limited to 'net')
-rw-r--r-- | net/unison-devel/Makefile | 5 | ||||
-rw-r--r-- | net/unison-devel/distinfo | 3 | ||||
-rw-r--r-- | net/unison-devel/patches/patch-ad | 15 |
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 |