summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorepg <epg>2005-04-06 05:28:40 +0000
committerepg <epg>2005-04-06 05:28:40 +0000
commit4489cfa7aa8b234c7edf6b7a133df94dd0ab25b5 (patch)
tree3418726b09d5a55b8bce09376d764b7cd8f1892c /www
parent6443fab3e7c6fcf13319b9c29ecb68482c5a5aa0 (diff)
downloadpkgsrc-4489cfa7aa8b234c7edf6b7a133df94dd0ab25b5.tar.gz
Update to 0.9.14 and make this work with python 2.4.
Release Notes for Clearsilver 0.9.14 03/08/2005 ------------------------------------- bugfix release - one incompatible change: semi-public function cgi_html_ws_strip now takes a second argument to set the level of stripping - white space stripper now has two levels: 1 is the old debug level (which doesn't strip whitespace at the beginning of a line) and the second strips all duplicate whitespace - fix for cgi_register_strfuncs missing for ruby/perl modules - fix for color problems in generated images in imd with GD2
Diffstat (limited to 'www')
-rw-r--r--www/clearsilver-base/PLIST8
-rw-r--r--www/clearsilver/Makefile.common4
-rw-r--r--www/clearsilver/distinfo9
-rw-r--r--www/clearsilver/patches/patch-ab14
-rw-r--r--www/py-clearsilver/Makefile6
5 files changed, 17 insertions, 24 deletions
diff --git a/www/clearsilver-base/PLIST b/www/clearsilver-base/PLIST
index 436375c0091..87a382e1802 100644
--- a/www/clearsilver-base/PLIST
+++ b/www/clearsilver-base/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2004/11/28 23:59:40 epg Exp $
+@comment $NetBSD: PLIST,v 1.2 2005/04/06 05:28:40 epg Exp $
bin/cstest
bin/static.cgi
include/ClearSilver/ClearSilver.h
@@ -126,11 +126,17 @@ man/man3/mCreate.3
man/man3/mDestroy.3
man/man3/mLock.3
man/man3/mUnlock.3
+man/man3/nerr_error_string.3
+man/man3/nerr_error_traceback.3
+man/man3/nerr_handle.3
man/man3/nerr_ignore.3
+man/man3/nerr_init.3
man/man3/nerr_log_error.3
+man/man3/nerr_match.3
man/man3/nerr_pass.3
man/man3/nerr_pass_ctx.3
man/man3/nerr_raise.3
+man/man3/nerr_register.3
man/man3/skipDelete.3
man/man3/skipFreeList.3
man/man3/skipInsert.3
diff --git a/www/clearsilver/Makefile.common b/www/clearsilver/Makefile.common
index 7c7db62b7d5..d56222d9939 100644
--- a/www/clearsilver/Makefile.common
+++ b/www/clearsilver/Makefile.common
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile.common,v 1.2 2004/12/05 21:53:51 epg Exp $
+# $NetBSD: Makefile.common,v 1.3 2005/04/06 05:28:40 epg Exp $
-DISTNAME= clearsilver-0.9.13
+DISTNAME= clearsilver-0.9.14
CLEARSILVER_BASE= ${DISTNAME:S/-/-base-/}
CATEGORIES= www
MASTER_SITES= http://www.clearsilver.net/downloads/
diff --git a/www/clearsilver/distinfo b/www/clearsilver/distinfo
index e6125d380ad..d04224e6ece 100644
--- a/www/clearsilver/distinfo
+++ b/www/clearsilver/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.4 2005/02/24 14:08:29 wiz Exp $
+$NetBSD: distinfo,v 1.5 2005/04/06 05:28:40 epg Exp $
-SHA1 (./clearsilver-0.9.13.tar.gz) = 947c328fb200aa6f3869c51bf115fe91d9944fa6
-RMD160 (./clearsilver-0.9.13.tar.gz) = 314d0c76de1aa0fdf1670d1c67ce50227c594a13
-Size (./clearsilver-0.9.13.tar.gz) = 365908 bytes
+SHA1 (./clearsilver-0.9.14.tar.gz) = 4be33eb3c6d6f3e128bcf49173df8a31daa15dab
+RMD160 (./clearsilver-0.9.14.tar.gz) = 304cceb38f6972f0ece2f4133eb4a32c9c7fbde6
+Size (./clearsilver-0.9.14.tar.gz) = 366041 bytes
SHA1 (patch-aa) = a336841bb190e179842b88694791303bcde211de
-SHA1 (patch-ab) = 23824d0023220a698bac8a1a7f6d45042095edd9
diff --git a/www/clearsilver/patches/patch-ab b/www/clearsilver/patches/patch-ab
deleted file mode 100644
index cb83fd7a7f7..00000000000
--- a/www/clearsilver/patches/patch-ab
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2004/11/29 00:08:57 epg Exp $
-
---- ruby/ext/hdf/extconf.rb.orig 2004-11-28 05:02:14.000000000 -0500
-+++ ruby/ext/hdf/extconf.rb
-@@ -5,6 +5,9 @@ require 'mkmf'
- # dir_config("hdf","../../..","../../../libs")
- dir_config("hdf")
-
-+$libs = append_library($libs, 'neo_cgi')
-+$libs = append_library($libs, 'z')
-+
- if have_header("ClearSilver.h") && have_library("neo_utl","hdf_init") && have_library("neo_cs","cs_init")
- create_makefile("hdf")
- end
diff --git a/www/py-clearsilver/Makefile b/www/py-clearsilver/Makefile
index 61cca9fef12..cc1dc7638cd 100644
--- a/www/py-clearsilver/Makefile
+++ b/www/py-clearsilver/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2005/01/23 20:41:49 recht Exp $
+# $NetBSD: Makefile,v 1.4 2005/04/06 05:28:40 epg Exp $
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
@@ -9,11 +9,13 @@ DEPENDS+= ${CLEARSILVER_BASE}:../../www/clearsilver-base
CONFIGURE_ARGS+= --enable-python
CONFIGURE_ARGS+= --with-python=${PYTHONBIN}
+MAKE_FLAGS+= PYTHON_SITE=${LOCALBASE}/${PYSITELIB}
+
INSTALL_DIRS= ${WRKSRC}/python
PY_PATCHPLIST= YES
PYBINMODULE= YES
-PYTHON_VERSIONS_ACCEPTED= 23 22 21
+PYTHON_VERSIONS_ACCEPTED= 24 23 22 21
.include "../../lang/python/application.mk"
.include "../../lang/python/extension.mk"