diff options
author | Matthew Marlowe <mattm@gentoo.org> | 2012-10-02 12:42:27 +0000 |
---|---|---|
committer | Matthew Marlowe <mattm@gentoo.org> | 2012-10-02 12:42:27 +0000 |
commit | ce6a9a041d64f7e58d13f64edd43a84b20c05cb0 (patch) | |
tree | 5a9ff4ae7a5933d84d472bf471ba087661ce865b /net-libs/wt | |
parent | Version bump (diff) | |
download | gentoo-2-ce6a9a041d64f7e58d13f64edd43a84b20c05cb0.tar.gz gentoo-2-ce6a9a041d64f7e58d13f64edd43a84b20c05cb0.tar.bz2 gentoo-2-ce6a9a041d64f7e58d13f64edd43a84b20c05cb0.zip |
Expanded dodir/chown/chmod commands in src_install in yet another try to see if we can get rid of all the portage sandbox messages.
(Portage version: 2.1.11.23/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/wt')
-rw-r--r-- | net-libs/wt/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/wt/wt-3.2.2_p1.ebuild | 22 |
2 files changed, 21 insertions, 7 deletions
diff --git a/net-libs/wt/ChangeLog b/net-libs/wt/ChangeLog index 60f97c29119d..8cbec58e295c 100644 --- a/net-libs/wt/ChangeLog +++ b/net-libs/wt/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/wt # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/wt/ChangeLog,v 1.14 2012/10/02 10:26:37 mattm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/wt/ChangeLog,v 1.15 2012/10/02 12:42:27 mattm Exp $ + + 02 Oct 2012; Matthew Marlowe <mattm@gentoo.org> wt-3.2.2_p1.ebuild: + Expanded dodir/chown/chmod commands in src_install in yet another try to see + if we can get rid of all the portage sandbox messages. 02 Oct 2012; Matthew Marlowe <mattm@gentoo.org> wt-3.2.2_p1.ebuild: Hopefully last qa fix. Because wt can act as its own webserver and can't diff --git a/net-libs/wt/wt-3.2.2_p1.ebuild b/net-libs/wt/wt-3.2.2_p1.ebuild index 39cf6fb87525..dbeb707d5d8d 100644 --- a/net-libs/wt/wt-3.2.2_p1.ebuild +++ b/net-libs/wt/wt-3.2.2_p1.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/net-libs/wt/wt-3.2.2_p1.ebuild,v 1.3 2012/10/02 10:26:37 mattm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/wt/wt-3.2.2_p1.ebuild,v 1.4 2012/10/02 12:42:27 mattm Exp $ EAPI="2" @@ -103,13 +103,17 @@ src_test() { } src_install() { + + dodir \ + /var/lib/wt \ + /var/lib/wt/home \ + /etc/wt \ + /var/run/wt + cmake-utils_src_install use doc && dohtml -A pdf,xhtml -r doc/* - dodir \ - /var/lib/wt \ - /var/lib/wt/home } pkg_postinst() { @@ -120,9 +124,15 @@ pkg_postinst() { elog "in a chroot environment." fi - chown -R wt:wt "${ROOT}"/var/lib/wt + chown -R wt:wt \ + "${ROOT}"/var/lib/wt \ + "${ROOT}"/var/run/wt \ + "${ROOT}"/etc/wt + chmod 0750 \ "${ROOT}"/var/lib/wt \ - "${ROOT}"/var/lib/wt/home + "${ROOT}"/var/lib/wt/home \ + "${ROOT}"/var/run/wt \ + "${ROOT}"/etc/wt } |