diff options
author | taca <taca> | 2002-02-01 14:04:50 +0000 |
---|---|---|
committer | taca <taca> | 2002-02-01 14:04:50 +0000 |
commit | 4cbdeeaa203e5d3d169090d73ca0308b10e970a9 (patch) | |
tree | 7800625e68e7a7def268c97ed83e8df56647ca8e /www/ap-ruby/Makefile | |
parent | ca1461b060726cb1a1b3256e06e6dad699570e9f (diff) | |
download | pkgsrc-4cbdeeaa203e5d3d169090d73ca0308b10e970a9.tar.gz |
Update ap-ruby package to 0.9.6 and make sure to install necessary files.
Wed Jan 30 17:41:47 2002 Shugo Maeda <shugo@modruby.net>
* version 0.9.6 released.
Wed Jan 30 17:34:01 2002 Shugo Maeda <shugo@modruby.net>
* lib/apache/ruby-debug.rb: new file.
Wed Jan 23 17:51:05 2002 Shugo Maeda <shugo@modruby.net>
* mod_ruby.c (ruby_cleanup): call ruby_finalize().
* mod_ruby.c (ruby_child_init): new function to initialize child
processes.
* mod_ruby.c (ruby_child_cleanup): new function to cleanup child
processes.
* request.c (request_notes): new method.
Wed Jan 16 14:02:51 2002 Shugo Maeda <shugo@modruby.net>
* apachelib.h (CSTR2OBJ): use rb_tainted_str_new2().
* array_header.c: ditto.
* table.c: ditto.
* server.c: ditto.
* lib/apache/ruby-run.rb: use untaint.
* lib/apache/eruby-run.rb: ditto.
* lib/apache/erb-run.rb: ditto.
* lib/apache/rd2html.rb: ditto.
Mon Jan 7 18:08:09 2002 U.Nakamura <usa@osb.att.ne.jp>
* Makefile.in (install-ruby): lib/$$file -> $(srcdir)/lib/$$file.
* Makefile.in (install-siteruby): ditto.
Diffstat (limited to 'www/ap-ruby/Makefile')
-rw-r--r-- | www/ap-ruby/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/www/ap-ruby/Makefile b/www/ap-ruby/Makefile index b22cd112819..9b9b1b3f8b1 100644 --- a/www/ap-ruby/Makefile +++ b/www/ap-ruby/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2002/01/24 23:36:02 taca Exp $ +# $NetBSD: Makefile,v 1.6 2002/02/01 14:04:50 taca Exp $ # $FreeBSD: ports/www/mod_ruby/Makefile,v 1.10 2000/12/31 10:14:53 knu Exp $ DISTNAME= mod_ruby-${VERSION} @@ -16,7 +16,7 @@ DEPENDS+= ${RUBY_PKGNAMEPREFIX}eruby>=0.9:../../textproc/ruby-eruby DIST_SUBDIR= ruby USE_RUBY= yes RUBY_REQD= 1.6 -VERSION= 0.9.5 +VERSION= 0.9.6 APXS= ${LOCALBASE}/sbin/apxs @@ -25,6 +25,7 @@ CONFIGURE_SCRIPT= ./configure.rb CONFIGURE_ARGS= --with-apxs="${APXS}" \ --with-eruby-includes="${LOCALBASE}/include" \ --with-eruby-libraries="${LOCALBASE}/lib" +INSTALL_TARGET= site-install CONF_FILES= ${RUBY_EXAMPLESDIR}/mod_ruby/mod_ruby.conf \ ${LOCALBASE}/etc/httpd/mod_ruby.conf @@ -37,7 +38,7 @@ post-build: ${SED} -e 's|/usr/local/apache/libexec|${LOCALBASE}/lib/httpd|g' \ ${WRKSRC}/examples/httpd.conf > ${WRKDIR}/mod_ruby.conf -do-install: +post-install: ${APXS} -i -A -n ruby ${WRKSRC}/mod_ruby.so ${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/mod_ruby ${INSTALL_DATA} ${WRKDIR}/mod_ruby.conf ${RUBY_EXAMPLESDIR}/mod_ruby |