From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 13:45:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0ABC5250; Tue, 21 Jan 2014 13:45:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D0AC61EAE; Tue, 21 Jan 2014 13:45:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LDjGHO084128; Tue, 21 Jan 2014 13:45:16 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LDjG3d084127; Tue, 21 Jan 2014 13:45:16 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201401211345.s0LDjG3d084127@svn.freebsd.org> From: Renato Botelho Date: Tue, 21 Jan 2014 13:45:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340607 - head/www/lighttpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jan 2014 13:45:17 -0000 Author: garga Date: Tue Jan 21 13:45:16 2014 New Revision: 340607 URL: http://svnweb.freebsd.org/changeset/ports/340607 QAT: https://qat.redports.org/buildarchive/r340607/ Log: - Fix build for non-root - Update LICENSE - Convert to new LIB_DEPENDS syntax Approved by: portmgr (mat) Modified: head/www/lighttpd/Makefile Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Tue Jan 21 13:26:54 2014 (r340606) +++ head/www/lighttpd/Makefile Tue Jan 21 13:45:16 2014 (r340607) @@ -10,11 +10,11 @@ MAINTAINER?= mm@FreeBSD.org COMMENT?= Secure, fast, compliant, and flexible Web Server .if !defined(_BUILDING_LIGHTTPD_MODULE) -LICENSE= BSD +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING .endif -LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre USE_BZIP2= yes GNU_CONFIGURE= yes @@ -39,7 +39,7 @@ USE_RC_SUBR= lighttpd OPTIONS_DEFINE= BZIP2 FAM GDBM IPV6 LIBEV LUA MEMCACHE MYSQL MYSQLAUTH \ NODELAY LDAP OPENSSL SPAWNFCGI VALGRIND WEBDAV -OPTIONS_DEFAULT= IPV6 OPENSSL +OPTIONS_DEFAULT= IPV6 OPENSSL BZIP2_DESC= bzip2 support (mod_compress) GDBM_DESC= gdbm storage (mod_trigger_b4_dl) @@ -104,7 +104,7 @@ CONFIGURE_ARGS+= --with-bzip2 .endif .if ${PORT_OPTIONS:MGDBM} -LIB_DEPENDS+= gdbm:${PORTSDIR}/databases/gdbm +LIB_DEPENDS+= libgdbm.so:${PORTSDIR}/databases/gdbm CONFIGURE_ARGS+= --with-gdbm .endif @@ -114,7 +114,7 @@ CONFIGURE_ARGS+= --disable-ipv6 .if ${PORT_OPTIONS:MLIBEV} CONFIGURE_ARGS+= --with-libev=${LOCALBASE} -LIB_DEPENDS+= ev.4:${PORTSDIR}/devel/libev +LIB_DEPENDS+= libev.so:${PORTSDIR}/devel/libev .endif .if ${PORT_OPTIONS:MLUA} @@ -124,7 +124,7 @@ CONFIGURE_ENV+= LUA_CFLAGS="-I${LUA_INC .endif .if ${PORT_OPTIONS:MMEMCACHE} -LIB_DEPENDS+= memcache.4:${PORTSDIR}/databases/libmemcache +LIB_DEPENDS+= libmemcache.so:${PORTSDIR}/databases/libmemcache CONFIGURE_ARGS+= --with-memcache .endif @@ -165,8 +165,8 @@ CONFIGURE_ARGS+= --with-valgrind .if ${PORT_OPTIONS:MWEBDAV} USE_GNOME+= libxml2 -LIB_DEPENDS+= uuid.1:${PORTSDIR}/misc/e2fsprogs-libuuid \ - sqlite3.8:${PORTSDIR}/databases/sqlite3 +LIB_DEPENDS+= libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ + libsqlite3.so:${PORTSDIR}/databases/sqlite3 CONFIGURE_ARGS+= --with-webdav-props --with-webdav-locks .endif @@ -217,8 +217,6 @@ post-install: .endfor @${INSTALL_DATA} ${WRKSRC}/doc/config/vhosts.d/vhosts.template \ ${STAGEDIR}${PREFIX}/etc/lighttpd/vhosts.d/vhosts.template - @${MKDIR} -m 0700 ${STAGEDIR}${LIGHTTPD_LOGROOT} - @${CHOWN} ${LIGHTTPD_USER}:${LIGHTTPD_GROUP} ${STAGEDIR}${LIGHTTPD_LOGROOT} .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR}