summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-11-22 14:34:07 +0000
committerAnthony G. Basile <blueness@gentoo.org>2012-11-22 14:34:07 +0000
commit15190a0657671981117d7f36407c88865bcd1f24 (patch)
tree092c409c9fa3d36a62a800a30c87397d4b267b52 /www-servers/thttpd
parentfix missing patches wrt #444177 (diff)
downloadgentoo-2-15190a0657671981117d7f36407c88865bcd1f24.tar.gz
gentoo-2-15190a0657671981117d7f36407c88865bcd1f24.tar.bz2
gentoo-2-15190a0657671981117d7f36407c88865bcd1f24.zip
Move chown/chmod to src_install, where they belong, bug #444183
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'www-servers/thttpd')
-rw-r--r--www-servers/thttpd/ChangeLog5
-rw-r--r--www-servers/thttpd/thttpd-2.26.4-r1.ebuild10
2 files changed, 8 insertions, 7 deletions
diff --git a/www-servers/thttpd/ChangeLog b/www-servers/thttpd/ChangeLog
index 80955abcc6e1..a142b22e52d9 100644
--- a/www-servers/thttpd/ChangeLog
+++ b/www-servers/thttpd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for www-servers/thttpd
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.52 2012/11/21 10:14:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/ChangeLog,v 1.53 2012/11/22 14:34:07 blueness Exp $
+
+ 22 Nov 2012; Anthony G. Basile <blueness@gentoo.org> thttpd-2.26.4-r1.ebuild:
+ Move chown/chmod to src_install, where they belong, bug #444183
21 Nov 2012; Agostino Sarubbo <ago@gentoo.org> thttpd-2.26.4-r1.ebuild:
Stable for x86, wrt bug #441548
diff --git a/www-servers/thttpd/thttpd-2.26.4-r1.ebuild b/www-servers/thttpd/thttpd-2.26.4-r1.ebuild
index 7de1fd9d3351..c0c96d99f94c 100644
--- a/www-servers/thttpd/thttpd-2.26.4-r1.ebuild
+++ b/www-servers/thttpd/thttpd-2.26.4-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v 1.7 2012/11/21 10:14:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/thttpd/thttpd-2.26.4-r1.ebuild,v 1.8 2012/11/22 14:34:07 blueness Exp $
EAPI="4"
@@ -58,13 +58,11 @@ src_install () {
mkdir "${ED}"${WEBROOT}/htdocs
keepdir ${WEBROOT}/htdocs
-}
-pkg_postinst() {
- chown root:${THTTPD_GROUP} "${EROOT}/usr/sbin/makeweb" \
+ chown root:${THTTPD_GROUP} "${ED}/usr/sbin/makeweb" \
|| die "Failed chown makeweb"
- chmod 2751 "${EROOT}/usr/sbin/makeweb" \
+ chmod 2751 "${ED}/usr/sbin/makeweb" \
|| die "Failed chmod makeweb"
- chmod 755 "${EROOT}/usr/share/doc/${PF}/htdocs.dist/cgi-bin/printenv" \
+ chmod 755 "${ED}/usr/share/doc/${PF}/htdocs.dist/cgi-bin/printenv" \
|| die "Failed chmod printenv"
}