diff options
author | vanilla <vanilla@FreeBSD.org> | 2004-11-26 11:14:30 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2004-11-26 11:14:30 +0800 |
commit | dda26c56d5e85163d2de7b86b6529daa7172532c (patch) | |
tree | 2f4804426e5ecaa27ea2cd568282a65132e0a1bf /www | |
parent | 0c5e971eacfadecb5fb6300f0948fb057095c732 (diff) | |
download | freebsd-ports-gnome-dda26c56d5e85163d2de7b86b6529daa7172532c.tar.gz freebsd-ports-gnome-dda26c56d5e85163d2de7b86b6529daa7172532c.tar.zst freebsd-ports-gnome-dda26c56d5e85163d2de7b86b6529daa7172532c.zip |
1: upgrade to 1.3.6
2: SSL fix
3: change maintainer to submitter.
4: sync lighttpd.conf
PR: ports/74196
Submitted by: Hendrik Scholz <hendrik(at)scholz.net>
Approved by: maintainer
Diffstat (limited to 'www')
-rw-r--r-- | www/lighttpd/Makefile | 6 | ||||
-rw-r--r-- | www/lighttpd/distinfo | 4 | ||||
-rw-r--r-- | www/lighttpd/files/lighttpd.conf.sample | 8 | ||||
-rw-r--r-- | www/lighttpd/files/patch-configure.in | 11 | ||||
-rw-r--r-- | www/lighttpd/pkg-plist | 1 |
5 files changed, 22 insertions, 8 deletions
diff --git a/www/lighttpd/Makefile b/www/lighttpd/Makefile index e406ea61fdbd..18c79d1739f7 100644 --- a/www/lighttpd/Makefile +++ b/www/lighttpd/Makefile @@ -6,15 +6,16 @@ # PORTNAME= lighttpd -PORTVERSION= 1.3.5 +PORTVERSION= 1.3.6 CATEGORIES= www MASTER_SITES= http://jan.kneschke.de/projects/lighttpd/download/ -MAINTAINER= k@123.org +MAINTAINER= hendrik@scholz.net COMMENT= A secure, fast, compliant, and very flexible Web Server LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre +USE_AUTOCONF_VER= 259 USE_REINPLACE= yes USE_RC_SUBR= yes USE_LIBTOOL_VER= 15 @@ -31,5 +32,6 @@ post-install: ${FILESDIR}/lighttpd.sh.tmpl > ${STARTUP_FILE} @${CHMOD} 755 ${STARTUP_FILE} @${INSTALL_DATA} ${FILESDIR}/lighttpd.conf.sample ${PREFIX}/etc/ + @${LIBTOOL} --finish ${PREFIX}/lib .include <bsd.port.mk> diff --git a/www/lighttpd/distinfo b/www/lighttpd/distinfo index 024b38a36a5b..336cbc12aede 100644 --- a/www/lighttpd/distinfo +++ b/www/lighttpd/distinfo @@ -1,2 +1,2 @@ -MD5 (lighttpd-1.3.5.tar.gz) = 15afeba95fa157e3bdedd9a1a22358a0 -SIZE (lighttpd-1.3.5.tar.gz) = 628719 +MD5 (lighttpd-1.3.6.tar.gz) = a8690596891be9119d9bf007088e0c8c +SIZE (lighttpd-1.3.6.tar.gz) = 632670 diff --git a/www/lighttpd/files/lighttpd.conf.sample b/www/lighttpd/files/lighttpd.conf.sample index dcc473acb2f3..e7bc4dbb45a5 100644 --- a/www/lighttpd/files/lighttpd.conf.sample +++ b/www/lighttpd/files/lighttpd.conf.sample @@ -2,7 +2,7 @@ # # use a it as base for lighttpd 1.0.0 and above # -# $Id: lighttpd.conf,v 1.6 2004/08/29 09:44:53 weigon Exp $ +# $Id: lighttpd.conf,v 1.7 2004/11/03 22:26:05 weigon Exp $ ############ Options you really have to take care of #################### @@ -159,10 +159,10 @@ server.groupname = "www" #### fastcgi module ## read fastcgi.txt for more info #fastcgi.server = ( ".php" => -# ( "grisu" => +# ( "localhost" => # ( -# "host" => "192.168.2.10", -# "port" => 1026 +# "socket" => "/tmp/php-fastcgi.socket", +# "bin-path" => "/usr/local/bin/php" # ) # ) # ) diff --git a/www/lighttpd/files/patch-configure.in b/www/lighttpd/files/patch-configure.in new file mode 100644 index 000000000000..6822df02b3f2 --- /dev/null +++ b/www/lighttpd/files/patch-configure.in @@ -0,0 +1,11 @@ +--- configure.in.orig Tue Nov 2 17:11:09 2004 ++++ configure.in Fri Nov 26 10:57:33 2004 +@@ -230,7 +230,7 @@ + AC_CHECK_HEADERS([openssl/ssl.h]) + OLDLIBS="$LIBS" + AC_CHECK_LIB(crypto, BIO_f_base64, [ +- AC_CHECK_LIB(ssl, SSL_new, [ SSL_LIB="-lcrypto -lssl" ], [], [ -lcrypto ]) ++ AC_CHECK_LIB(ssl, SSL_new, [ SSL_LIB="-lcrypto -lssl" AC_DEFINE(HAVE_LIBSSL, [], [Have libssl]) ], [], [ -lcrypto ]) + ], [], []) + LIBS="$OLDLIBS" + AC_SUBST(SSL_LIB) diff --git a/www/lighttpd/pkg-plist b/www/lighttpd/pkg-plist index 240379fec0a9..1f87cb376a74 100644 --- a/www/lighttpd/pkg-plist +++ b/www/lighttpd/pkg-plist @@ -1,3 +1,4 @@ +bin/spawn-fcgi etc/lighttpd.conf.sample etc/rc.d/lighttpd.sh lib/lighttpd/mod_access.so |