diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-05-05 11:04:18 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-05-05 11:04:18 +0000 |
commit | 1e6ad1413e2293d0701fd4fe954d815232137d6c (patch) | |
tree | a44805f2511c6ca4a934800cf627cd13adc0921f /www-servers/lighttpd | |
parent | rebuild distfile checksums (diff) | |
download | gentoo-2-1e6ad1413e2293d0701fd4fe954d815232137d6c.tar.gz gentoo-2-1e6ad1413e2293d0701fd4fe954d815232137d6c.tar.bz2 gentoo-2-1e6ad1413e2293d0701fd4fe954d815232137d6c.zip |
Readd ~x86-fbsd keyword and move enewuser/enewgroup calls in pkg_setup.
(Portage version: 2.1_pre10-r2)
Diffstat (limited to 'www-servers/lighttpd')
-rw-r--r-- | www-servers/lighttpd/ChangeLog | 6 | ||||
-rw-r--r-- | www-servers/lighttpd/files/digest-lighttpd-1.4.10-r2 | 2 | ||||
-rw-r--r-- | www-servers/lighttpd/lighttpd-1.4.10-r2.ebuild | 13 |
3 files changed, 14 insertions, 7 deletions
diff --git a/www-servers/lighttpd/ChangeLog b/www-servers/lighttpd/ChangeLog index 10206ca48da3..e569696d2b91 100644 --- a/www-servers/lighttpd/ChangeLog +++ b/www-servers/lighttpd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-servers/lighttpd # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/ChangeLog,v 1.67 2006/05/04 07:27:08 bass Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/ChangeLog,v 1.68 2006/05/05 11:04:18 flameeyes Exp $ + + 05 May 2006; Diego Pettenò <flameeyes@gentoo.org> + lighttpd-1.4.10-r2.ebuild: + Readd ~x86-fbsd keyword and move enewuser/enewgroup calls in pkg_setup. 04 May 2006; J. Alberto Suárez López <bass@gentoo.orgrg> +lighttpd-1.4.10-r2.ebuild: diff --git a/www-servers/lighttpd/files/digest-lighttpd-1.4.10-r2 b/www-servers/lighttpd/files/digest-lighttpd-1.4.10-r2 index a7ff2258d4ba..a30cb8a2393a 100644 --- a/www-servers/lighttpd/files/digest-lighttpd-1.4.10-r2 +++ b/www-servers/lighttpd/files/digest-lighttpd-1.4.10-r2 @@ -1 +1,3 @@ MD5 51e42c2cc98a1f9986b9f232ff5a01f2 lighttpd-1.4.10.tar.gz 777853 +RMD160 e7d1eeab33a0cb47eeed7f9499c894fd2aea5445 lighttpd-1.4.10.tar.gz 777853 +SHA256 fdde0c08d3e1883c04ddc97a22916b063b2679f5fcfbda81436ff4e85db18160 lighttpd-1.4.10.tar.gz 777853 diff --git a/www-servers/lighttpd/lighttpd-1.4.10-r2.ebuild b/www-servers/lighttpd/lighttpd-1.4.10-r2.ebuild index bd6e20d52818..7432817cc4fd 100644 --- a/www-servers/lighttpd/lighttpd-1.4.10-r2.ebuild +++ b/www-servers/lighttpd/lighttpd-1.4.10-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/lighttpd-1.4.10-r2.ebuild,v 1.1 2006/05/04 07:27:08 bass Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/lighttpd-1.4.10-r2.ebuild,v 1.2 2006/05/05 11:04:18 flameeyes Exp $ inherit eutils autotools depend.php @@ -10,7 +10,7 @@ SRC_URI="http://www.lighttpd.net/download/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="bzip2 doc fam fastcgi gdbm ipv6 ldap lua minimal memcache mysql pcre php rrdtool ssl test webdav xattr" RDEPEND=">=sys-libs/zlib-1.1 @@ -89,6 +89,9 @@ pkg_setup() { fi use php && require_php_with_use cgi + + enewgroup lighttpd + enewuser lighttpd -1 -1 /var/www/localhost/htdocs lighttpd } src_unpack() { @@ -166,10 +169,8 @@ src_install() { newins ${FILESDIR}/lighttpd.logrotate lighttpd || die keepdir /var/l{ib,og}/lighttpd /var/www/localhost/htdocs - enewgroup lighttpd - enewuser lighttpd -1 -1 /var/www/localhost/htdocs lighttpd - fowners lighttpd:lighttpd /var/l{ib,og}/lighttpd - fperms 0750 /var/l{ib,og}/lighttpd + fowners lighttpd:lighttpd /var/l{ib,og}/lighttpd + fperms 0750 /var/l{ib,og}/lighttpd use minimal && remove_non_essential } |