summaryrefslogtreecommitdiff
path: root/lang/cduce
diff options
context:
space:
mode:
authorStanislav Sedov <stas@FreeBSD.org>2009-04-11 13:23:05 +0000
committerStanislav Sedov <stas@FreeBSD.org>2009-04-11 13:23:05 +0000
commitc6762e80516b169cd71a8d7e68d0ed5b308f7e55 (patch)
treef23cbb8b9252353d844bff7e183b8b588e997854 /lang/cduce
parentAdd bugfiux for "Attributes + Unkown Error". (diff)
- Update lang/ocaml to 3.11.0. [1]
- Fix devel/cil build with 3.11.0 by using proper object file name - Fix devel/deputy build with 3.11.0 by using proper object file name - Fix lang/mtasc. Ocamlp4 syntax has changed and usage of ';' as delimiters is not allowed now. - Fix usage message in lang/mtasc. - Implement a FreeBSD specific code for retriving the executable path in lang/mtasc. - Update devel/omake to 0.9.8.5. - Fix devel/omake compilation with 3.11 by dropping an unused reference from the code. - Fix www/geneweb build with 3.11 by not emitting errors for warnings. - Fix print/advi build. [2] - Update lang/cduce to 0.5.3 (this fixes build with ocaml 3.11.0). PR: ports/130845 [1] [2] (based on) Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1], Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp> [2]
Notes
Notes: svn path=/head/; revision=232098
Diffstat (limited to 'lang/cduce')
-rw-r--r--lang/cduce/Makefile5
-rw-r--r--lang/cduce/distinfo6
-rw-r--r--lang/cduce/files/patch-parser_cduce_curl.ml18
3 files changed, 5 insertions, 24 deletions
diff --git a/lang/cduce/Makefile b/lang/cduce/Makefile
index 9d4f50d30c3a..f76e489d0629 100644
--- a/lang/cduce/Makefile
+++ b/lang/cduce/Makefile
@@ -5,8 +5,8 @@
# $FreeBSD$
PORTNAME= cduce
-PORTVERSION= 0.5.2.1
-PORTREVISION= 1
+PORTVERSION= 0.5.3
+PORTREVISION= 0
CATEGORIES= lang
MASTER_SITES= http://www.cduce.org/download/ \
ftp://ftp.stack.nl/pub/users/johans/cduce/
@@ -33,7 +33,6 @@ INSTALL_TARGET= install_bin install_lib
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX} --with-ocamlopt --with-cgi --without-netclient --without-pxp_wlex --docdir=${DOCSDIR}
SITELIBDIR= ${LOCALBASE}/${OCAML_SITELIBDIR}
-WRKSRC= ${WRKDIR}/${DISTNAME:R}
MAN1= cduce.1 cduce_mktop.1 dtd2cduce.1
diff --git a/lang/cduce/distinfo b/lang/cduce/distinfo
index cc9696ba4a56..76e3c4d86e1f 100644
--- a/lang/cduce/distinfo
+++ b/lang/cduce/distinfo
@@ -1,3 +1,3 @@
-MD5 (cduce-0.5.2.1.tar.gz) = d2d52bf536c1a8f4397b4c64794d9322
-SHA256 (cduce-0.5.2.1.tar.gz) = 4edd13db651a26d0ce4751f7634eec11b06284839c31f47299a99af7b162b683
-SIZE (cduce-0.5.2.1.tar.gz) = 595196
+MD5 (cduce-0.5.3.tar.gz) = 5506326db28419b3f578ff225417448f
+SHA256 (cduce-0.5.3.tar.gz) = 38264f53790075c3046f9ea55984b50366e0888e80512b9cbc2ed42ff36f10b2
+SIZE (cduce-0.5.3.tar.gz) = 594275
diff --git a/lang/cduce/files/patch-parser_cduce_curl.ml b/lang/cduce/files/patch-parser_cduce_curl.ml
deleted file mode 100644
index f9d04b01077b..000000000000
--- a/lang/cduce/files/patch-parser_cduce_curl.ml
+++ /dev/null
@@ -1,18 +0,0 @@
---- parser/cduce_curl.ml 2008-02-25 11:10:42.000000000 +0100
-+++ parser/cduce_curl.ml 2009-02-13 16:52:26.000000000 +0100
-@@ -9,7 +9,14 @@
- let buff = Buffer.create 4096 in
- let conn = Curl.init () in
- Curl.set_url conn s;
-- Curl.set_writefunction conn (Buffer.add_string buff);
-+ Curl.set_writefunction conn (
-+ fun str ->
-+ try
-+ Buffer.add_string buff str;
-+ String.length str
-+ with
-+ Failure _ -> 0
-+ );
- Curl.perform conn;
- Buffer.contents buff
- with Curl.CurlException (code, n, msg) ->