summaryrefslogtreecommitdiff
path: root/www/ap-dtcl
diff options
context:
space:
mode:
authorjwise <jwise@pkgsrc.org>2000-08-30 00:22:18 +0000
committerjwise <jwise@pkgsrc.org>2000-08-30 00:22:18 +0000
commit0e5cbd1250f02b55550ddfe4e4ee1c58723172e4 (patch)
treeb45052049d127ee3f9b2cd41385a522e7f1802b5 /www/ap-dtcl
parent34b11da53a2266f2cf2361b09a5a09f878ba00cf (diff)
downloadpkgsrc-0e5cbd1250f02b55550ddfe4e4ee1c58723172e4.tar.gz
Update ap-dtcl from 0.6.4 to 0.8.1 and adapt to tcl-8.3.2.
Changes since 0.6.4-1: libapache-mod-dtcl (0.8.1-1) unstable; urgency=low * Put some code in as a workaround for systems with Tcl compiled against threads. -- David N. Welton <davidw@efn.org> Thu, 22 Jun 2000 01:42:26 +0200 libapache-mod-dtcl (0.8.0-1) unstable; urgency=low * Added information about building on HPUX. * Added support for .tcl files. * Fixed bug in HGetVars which manifests itself only when content negotiation is used. * Updated documentation. -- David N. Welton <davidw@efn.org> Tue, 16 May 2000 19:00:05 +0200 libapache-mod-dtcl (0.7.5-1) unstable; urgency=low * Changed hputs to use "" instead of {}, so that { and } may be escaped with backslashes. * Changed output format for errors. -- David N. Welton <davidw@efn.org> Wed, 19 Apr 2000 17:49:47 +0200 libapache-mod-dtcl (0.7.3-2) frozen unstable; urgency=low * Removed "code2html" target from build target. * Fixes #58431. -- David N. Welton <davidw@efn.org> Fri, 3 Mar 2000 13:11:23 +0100 libapache-mod-dtcl (0.7.3-1) frozen unstable; urgency=low * Fixes GET argument parsing bug. * Changed argument parsing to create one list and avoid sublists. -- David N. Welton <davidw@efn.org> Sat, 22 Jan 2000 20:46:34 -0800 libapache-mod-dtcl (0.7.0-2) unstable; urgency=low * Made hputs, include, and buffer_add commands safe for binary and sparse data. * Now able to output different mime types. -- David N. Welton <davidw@efn.org> Sat, 18 Dec 1999 18:50:29 -0800 libapache-mod-dtcl (0.7.0-1) unstable; urgency=low * Major overhaul of header and buffering system. * Several new commands. -- David N. Welton <davidw@efn.org> Sun, 5 Dec 1999 21:24:23 -0800 libapache-mod-dtcl (0.6.4-2) unstable; urgency=low * Fixed Lintian problems: * Set and remove links between /usr/doc and /usr/share/doc. * Added dh_installchangelogs. -- David N. Welton <davidw@efn.org> Sun, 14 Nov 1999 15:15:51 -0800
Diffstat (limited to 'www/ap-dtcl')
-rw-r--r--www/ap-dtcl/Makefile14
-rw-r--r--www/ap-dtcl/files/md54
-rw-r--r--www/ap-dtcl/pkg/PLIST7
3 files changed, 16 insertions, 9 deletions
diff --git a/www/ap-dtcl/Makefile b/www/ap-dtcl/Makefile
index f9164d9e85e..f85e29729da 100644
--- a/www/ap-dtcl/Makefile
+++ b/www/ap-dtcl/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2000/08/28 09:14:51 jlam Exp $
+# $NetBSD: Makefile,v 1.5 2000/08/30 00:22:18 jwise Exp $
-DISTNAME= libapache-mod-dtcl_0.6.4-1
-PKGNAME= ap-dtcl-0.6.4
+DISTNAME= libapache-mod-dtcl_0.8.1-1
+PKGNAME= ap-dtcl-0.8.1
WRKSRC= ${WRKDIR}/mod_dtcl
CATEGORIES= www
MASTER_SITES= http://master.debian.org/~davidw/mod_dtcl/
@@ -10,12 +10,12 @@ MAINTAINER= jwise@netbsd.org
HOMEPAGE= http://comanche.com.dtu.dk/dave/
DEPENDS+= apache-1.3.*:../../www/apache
-DEPENDS+= tcl-*:../../lang/tcl80
+DEPENDS+= tcl-8.3.2:../../lang/tcl
# For "apxs":
BUILD_DEPENDS= ${PERL5}:../../lang/perl5
-INCLUDES= -I${PREFIX}/include/tcl8.0
-LIBS= -L${PREFIX}/lib -Wl,-R${PREFIX}/lib -ltcl80 -lm
+INCLUDES= -I${PREFIX}/include/
+LIBS= -L${PREFIX}/lib -Wl,-R${PREFIX}/lib -ltcl83 -lm
do-build:
cd ${WRKSRC} && ${PREFIX}/sbin/apxs ${INCLUDES} ${LIBS} -c mod_dtcl.c
@@ -27,8 +27,10 @@ do-install:
@cd ${WRKSRC} && ${PREFIX}/sbin/apxs -i mod_dtcl.so
-${MKDIR} ${PREFIX}/share/doc/mod_dtcl
${INSTALL_DATA} ${WRKSRC}/*.html ${PREFIX}/share/doc/mod_dtcl
+ ${INSTALL_DATA} ${WRKSRC}/*.gif ${PREFIX}/share/doc/mod_dtcl
-${MKDIR} ${PREFIX}/share/examples/mod_dtcl
${INSTALL_DATA} ${WRKSRC}/*.ttml ${PREFIX}/share/examples/mod_dtcl
+ ${INSTALL_DATA} ${WRKSRC}/contrib/*.ttml ${PREFIX}/share/examples/mod_dtcl
-${MKDIR} ${PREFIX}/libexec/mod_dtcl
${INSTALL_DATA} ${WRKSRC}/*.tcl ${PREFIX}/libexec/mod_dtcl
${INSTALL_PROGRAM} ${WRKSRC}/testdtcl ${PREFIX}/bin
diff --git a/www/ap-dtcl/files/md5 b/www/ap-dtcl/files/md5
index be985d08a27..519fac78656 100644
--- a/www/ap-dtcl/files/md5
+++ b/www/ap-dtcl/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.1.1.1 1999/11/12 15:52:54 jwise Exp $
+$NetBSD: md5,v 1.2 2000/08/30 00:22:20 jwise Exp $
-MD5 (libapache-mod-dtcl_0.6.4-1.tar.gz) = 8fd9117ab8329fc9b728a934409f119f
+MD5 (libapache-mod-dtcl_0.8.1-1.tar.gz) = 66513a09a1cc0d3a4478276a308d4328
diff --git a/www/ap-dtcl/pkg/PLIST b/www/ap-dtcl/pkg/PLIST
index 92d59b9855e..414380f0781 100644
--- a/www/ap-dtcl/pkg/PLIST
+++ b/www/ap-dtcl/pkg/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 1999/11/12 19:59:57 jwise Exp $
+@comment $NetBSD: PLIST,v 1.3 2000/08/30 00:22:22 jwise Exp $
bin/testdtcl
lib/httpd/mod_dtcl.so
libexec/mod_dtcl/dtcl.tcl
@@ -7,12 +7,17 @@ libexec/mod_dtcl/infodebug.tcl
libexec/mod_dtcl/testdtcl.tcl
man/man1/testdtcl.1
share/doc/mod_dtcl/INSTALL.html
+share/doc/mod_dtcl/TODO.html
share/doc/mod_dtcl/benchmark.html
+share/doc/mod_dtcl/browse-source.html
share/doc/mod_dtcl/dtcl-tcl.html
+share/doc/mod_dtcl/readme.hpux.html
share/doc/mod_dtcl/readme.html
share/doc/mod_dtcl/table.html
share/doc/mod_dtcl/use.html
+share/doc/mod_dtcl/dtcl.gif
share/examples/mod_dtcl/examples.ttml
+share/examples/mod_dtcl/clocks.ttml
@dirrm libexec/mod_dtcl
@dirrm share/doc/mod_dtcl
@dirrm share/examples/mod_dtcl