diff options
author | thierry <thierry@FreeBSD.org> | 2006-07-20 06:49:03 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2006-07-20 06:49:03 +0800 |
commit | 02527d83f9cb10657c284b24b144f901e175d8ca (patch) | |
tree | dddf95382ac830af7164e6b1883174dcf5699295 /lang/cduce | |
parent | a5569329981058a9ffbf05f9689eb9e21f85619f (diff) | |
download | freebsd-ports-gnome-02527d83f9cb10657c284b24b144f901e175d8ca.tar.gz freebsd-ports-gnome-02527d83f9cb10657c284b24b144f901e175d8ca.tar.zst freebsd-ports-gnome-02527d83f9cb10657c284b24b144f901e175d8ca.zip |
- Chase ocaml upgrade by upgrading to 0.4.0 and unbreak;
- Disable ocurl by default and since I don't know how to fix it mark
broken if enabled.
Changelog at <http://www.cduce.org/CHANGES>.
Diffstat (limited to 'lang/cduce')
-rw-r--r-- | lang/cduce/Makefile | 26 | ||||
-rw-r--r-- | lang/cduce/distinfo | 6 |
2 files changed, 16 insertions, 16 deletions
diff --git a/lang/cduce/Makefile b/lang/cduce/Makefile index ca7920726a5f..0a88c2da5e69 100644 --- a/lang/cduce/Makefile +++ b/lang/cduce/Makefile @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= cduce -PORTVERSION= 0.3.2 +PORTVERSION= 0.4.0 CATEGORIES= lang MASTER_SITES= http://www.cduce.org/download/ @@ -19,27 +19,26 @@ BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml \ ${LOCALBASE}/lib/ocaml/site-lib/pcre/pcre.a:${PORTSDIR}/devel/ocaml-pcre \ ${LOCALBASE}/lib/ocaml/site-lib/netstring/netstring.a:${PORTSDIR}/www/ocaml-net -BROKEN= Does not compile - # Support for url via ftp/ocaml-ocurl -.if !defined(WITHOUT_OCURL) +.if defined(WITH_OCURL) +BROKEN= error while linking curl.cma - please do not enable Curl support until fixed. BUILD_DEPENDS+= ${LOCALBASE}/lib/ocaml/site-lib/curl/curl.cmi:${PORTSDIR}/ftp/ocaml-ocurl .endif # Support for the PXP XML parser .if defined(WITH_OCAML_EXPAT) -BUILD_DEPENDS+=${LOCALBASE}/lib/ocaml/site-lib/expat/expat.cmi:${PORTSDIR}/textproc/ocaml-expat +BUILD_DEPENDS+= ${LOCALBASE}/lib/ocaml/site-lib/expat/expat.cmi:${PORTSDIR}/textproc/ocaml-expat .else -BUILD_DEPENDS+=${LOCALBASE}/lib/ocaml/site-lib/pxp-engine/pxp_engine.cma:${PORTSDIR}/textproc/ocaml-pxp +BUILD_DEPENDS+= ${LOCALBASE}/lib/ocaml/site-lib/pxp-engine/pxp_engine.cma:${PORTSDIR}/textproc/ocaml-pxp .endif # Configure : use ocamlopt and don't look for netclient or pxp_wlex HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} --with-ocamlopt --without-netclient --without-pxp_wlex -# Be sure to not build ocurl support if WITHOUT_OCURL is defined, +# Be sure to not build ocurl support if WITH_OCURL is not defined, # even if ocurl is present. -.if defined(WITHOUT_OCURL) +.if !defined(WITH_OCURL) CONFIGURE_ARGS+= --without-curl .endif @@ -52,7 +51,8 @@ CONFIGURE_ARGS+= --without-expat --with-pxp # Support for OCaml/CDuce interface .if !defined(WITHOUT_MLIFACE) -CONFIGURE_ARGS+= --mliface=${LOCALBASE}/lib/ocaml/compiler-lib +BUILD_DEPENDS+= ${NONEXISTENT}:${PORTSDIR}/lang/ocaml:patch +CONFIGURE_ARGS+= --mliface=`cd ${PORTSDIR}/lang/ocaml; ${MAKE} -V WRKSRC` .endif USE_GMAKE= yes @@ -70,15 +70,15 @@ INSTALL_TARGET+= install_doc PORTDOCS= * .endif -MAN1= cduce.1 cdo2ml.1 cduce_mktop.1 +MAN1= cduce.1 cduce_mktop.1 dtd2cduce.1 PKGDEINSTALL= ${PKGINSTALL} FINDLIB_PKGNAME=${PORTNAME} -PLIST_FILES= bin/cduce +PLIST_FILES= bin/cduce bin/dtd2cduce .if !defined(WITHOUT_MLIFACE) -PLIST_FILES+= bin/cdo2ml bin/mlcduce_wrapper bin/cduce_mktop +PLIST_FILES+= bin/cduce_mktop .endif post-install: @@ -98,7 +98,7 @@ pre-everything:: @${ECHO} "" @${ECHO} "You may define the following build options:" @${ECHO} "" - @${ECHO} " WITHOUT_CURL Disable url support via ftp/ocaml-ocurl (=> no url support)" + @${ECHO} " WITH_CURL Enable url support via ftp/ocaml-ocurl (=> no url support by default)" @${ECHO} " WITH_OCAML_EXPAT Enable support for the Expat XML parser." @${ECHO} " WITHOUT_MLIFACE Disable building OCaml/CDuce interface." @${ECHO} "" diff --git a/lang/cduce/distinfo b/lang/cduce/distinfo index 996f236535b9..050545591807 100644 --- a/lang/cduce/distinfo +++ b/lang/cduce/distinfo @@ -1,3 +1,3 @@ -MD5 (cduce-0.3.2.tar.gz) = 3714dc8231fd3f09ef87360d6d2f4987 -SHA256 (cduce-0.3.2.tar.gz) = 8fd6241bced9c006c9e7db64a3c266f60823d907abeb31074d05f9071e802dd8 -SIZE (cduce-0.3.2.tar.gz) = 312818 +MD5 (cduce-0.4.0.tar.gz) = 94d8071f3a6c0b9b1fb23ee467818eb2 +SHA256 (cduce-0.4.0.tar.gz) = ebffaa9f78cce9080b5bb0576d27eb6e866ee7e6cd0362c8fffe43d1e4e71783 +SIZE (cduce-0.4.0.tar.gz) = 372280 |