diff options
author | Michael Stewart <vericgar@gentoo.org> | 2005-12-11 03:01:15 +0000 |
---|---|---|
committer | Michael Stewart <vericgar@gentoo.org> | 2005-12-11 03:01:15 +0000 |
commit | 23e0b8c73ca55f68cc1e6d8ae26dadcbd86d9d3b (patch) | |
tree | 91afa37cb376b5d5547efbc31f83e15bccaea4cd /net-www/apache/apache-2.0.54-r31.ebuild | |
parent | Marked ppc stable. (diff) | |
download | gentoo-2-23e0b8c73ca55f68cc1e6d8ae26dadcbd86d9d3b.tar.gz gentoo-2-23e0b8c73ca55f68cc1e6d8ae26dadcbd86d9d3b.tar.bz2 gentoo-2-23e0b8c73ca55f68cc1e6d8ae26dadcbd86d9d3b.zip |
Remove generated/unused mime.types to fix bug 108200. Fix enewgroup/enewuser call location so that we work when installed from a binary package - fixes bug 110636.
(Portage version: 2.0.52-r1)
Diffstat (limited to 'net-www/apache/apache-2.0.54-r31.ebuild')
-rw-r--r-- | net-www/apache/apache-2.0.54-r31.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net-www/apache/apache-2.0.54-r31.ebuild b/net-www/apache/apache-2.0.54-r31.ebuild index 9c6556011c3a..64e24646c5d8 100644 --- a/net-www/apache/apache-2.0.54-r31.ebuild +++ b/net-www/apache/apache-2.0.54-r31.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/apache/apache-2.0.54-r31.ebuild,v 1.16 2005/10/07 18:11:47 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/apache/apache-2.0.54-r31.ebuild,v 1.17 2005/12/11 03:01:15 vericgar Exp $ inherit eutils gnuconfig multilib @@ -264,6 +264,7 @@ src_install () { mv usr/sbin/envvars* usr/$(get_libdir)/apache2/build dodoc etc/apache2/*-std.conf rm -f etc/apache2/*.conf + rm -f etc/apache2/mime.types rm -rf var/run var/log # we DEPEND on net-www/gentoo-webroot-default for sharing this by now @@ -306,8 +307,11 @@ src_install () { } pkg_postinst() { + # setup apache user and group + enewgroup apache 81 + enewuser apache 81 -1 /var/www apache - # Automatically generate test ceritificates if ssl USE flag is beeing set + # Automatically generate test ceritificates if ssl USE flag is being set if useq ssl -a !-e ${ROOT}/etc/apache2/ssl/server.crt; then cd ${ROOT}/etc/apache2/ssl einfo |