diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-12-04 17:52:09 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-12-04 17:52:09 +0000 |
commit | 145db1dbca512a0d45ff7a386ced1cae4a288d01 (patch) | |
tree | a2a81be15202d5e9578fc582661520a7cc52cdcb /net-www/horde-imp | |
parent | added webapps-apache (diff) | |
download | historical-145db1dbca512a0d45ff7a386ced1cae4a288d01.tar.gz historical-145db1dbca512a0d45ff7a386ced1cae4a288d01.tar.bz2 historical-145db1dbca512a0d45ff7a386ced1cae4a288d01.zip |
fixing coreutils chown.
Diffstat (limited to 'net-www/horde-imp')
-rw-r--r-- | net-www/horde-imp/ChangeLog | 5 | ||||
-rw-r--r-- | net-www/horde-imp/Manifest | 8 | ||||
-rw-r--r-- | net-www/horde-imp/horde-imp-3.2.2.ebuild | 8 |
3 files changed, 10 insertions, 11 deletions
diff --git a/net-www/horde-imp/ChangeLog b/net-www/horde-imp/ChangeLog index cff09c85fcff..57b9739bb5ca 100644 --- a/net-www/horde-imp/ChangeLog +++ b/net-www/horde-imp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-www/horde-imp # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/horde-imp/ChangeLog,v 1.12 2003/11/12 20:12:03 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/horde-imp/ChangeLog,v 1.13 2003/12/04 17:49:49 mholzer Exp $ + + 04 Dec 2003; Martin Holzer <mholzer@gentoo.org> horde-imp-3.2.2.ebuild: + fixing coreutils chown. 12 Nov 2003; Martin Holzer <mholzer@gentoo.org> horde-imp-3.2.2.ebuild: added webapps-apache diff --git a/net-www/horde-imp/Manifest b/net-www/horde-imp/Manifest index daee57fcdbcd..9797213d4d92 100644 --- a/net-www/horde-imp/Manifest +++ b/net-www/horde-imp/Manifest @@ -1,9 +1,9 @@ -MD5 4304e5943c0e55e1eafb5ade259062c3 ChangeLog 1817 +MD5 65f03fb45a235eb940fdf9b3ed781a2f horde-imp-3.2.ebuild 2539 MD5 b923d0ffd17ba2650f0b87978ebef46b horde-imp-3.1.ebuild 2375 +MD5 99ea2fcf468ddaf10954f5d8a9145282 horde-imp-3.2.2.ebuild 1358 +MD5 dd53c4bf03c8aa10e87671552e317ec4 ChangeLog 1918 MD5 b84d36dd72ea979fdbebbee29a5439ba horde-imp-3.2.1.ebuild 1876 -MD5 65f03fb45a235eb940fdf9b3ed781a2f horde-imp-3.2.ebuild 2539 -MD5 768c7927ece377bd7f0ef64f76598c49 horde-imp-3.2.2.ebuild 1401 MD5 b46592cbb457b086f8a7028101446355 files/digest-horde-imp-3.1 60 -MD5 fbcc7aba9696f0f62a57c1da73ed2adf files/digest-horde-imp-3.2 60 MD5 ed9183a28cb927048e4638b39f7b4718 files/digest-horde-imp-3.2.1 62 +MD5 fbcc7aba9696f0f62a57c1da73ed2adf files/digest-horde-imp-3.2 60 MD5 3c27fa2d766fcde19cc8a601915f4d0b files/digest-horde-imp-3.2.2 62 diff --git a/net-www/horde-imp/horde-imp-3.2.2.ebuild b/net-www/horde-imp/horde-imp-3.2.2.ebuild index 2487818cd490..00ea4a454d64 100644 --- a/net-www/horde-imp/horde-imp-3.2.2.ebuild +++ b/net-www/horde-imp/horde-imp-3.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/horde-imp/horde-imp-3.2.2.ebuild,v 1.4 2003/11/12 20:12:03 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/horde-imp/horde-imp-3.2.2.ebuild,v 1.5 2003/12/04 17:49:49 mholzer Exp $ inherit webapp-apache @@ -17,9 +17,6 @@ S=${WORKDIR}/${MY_P} webapp-detect || NO_WEBSERVER=1 -HTTPD_USER="apache" -HTTPD_GROUP="apache" - pkg_setup() { # FIXME: Is this really how we want to do this ? GREP=`grep imap /var/db/pkg/dev-php/mod_php*/USE` @@ -34,7 +31,6 @@ pkg_setup() { } src_install () { - local DocumentRoot=${HTTPD_ROOT} local destdir=${DocumentRoot}/horde/imp @@ -46,7 +42,7 @@ src_install () { cd ${D}/${HTTPD_ROOT}/horde # protecting files - chown -R ${HTTPD_USER}.${HTTPD_GROUP} imp + chown -R ${HTTPD_USER}:${HTTPD_GROUP} imp find ${D}/${destdir} -type f -exec chmod 0640 {} \; find ${D}/${destdir} -type d -exec chmod 0750 {} \; } |