diff options
author | 2016-11-01 19:44:27 +0100 | |
---|---|---|
committer | 2016-11-06 16:34:35 +0100 | |
commit | 0674aa64df1d65d427d653e3ed8b37b211b4d848 (patch) | |
tree | 2b6255f478c06b11a0f2e06567db68b9897098c9 /app-portage/eix | |
parent | app-portage/eix: Remove invalid and useless USE flags (diff) | |
download | gentoo-0674aa64df1d65d427d653e3ed8b37b211b4d848.tar.gz gentoo-0674aa64df1d65d427d653e3ed8b37b211b4d848.tar.bz2 gentoo-0674aa64df1d65d427d653e3ed8b37b211b4d848.zip |
app-portage/eix: Own the cache directory
Diffstat (limited to 'app-portage/eix')
-rw-r--r-- | app-portage/eix/eix-0.32.1-r1.ebuild (renamed from app-portage/eix/eix-0.32.1.ebuild) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app-portage/eix/eix-0.32.1.ebuild b/app-portage/eix/eix-0.32.1-r1.ebuild index 57695a9fba1c..4665d7be2714 100644 --- a/app-portage/eix/eix-0.32.1.ebuild +++ b/app-portage/eix/eix-0.32.1-r1.ebuild @@ -75,15 +75,15 @@ src_install() { default dobashcomp bash/eix systemd_dotmpfilesd tmpfiles.d/eix.conf + + keepdir /var/cache/eix } pkg_postinst() { - local cache=${EROOT%/}/var/cache/${PN} - if [[ ! -d ${cache} ]]; then - mkdir "${cache}" || die - if ! use prefix; then - chown portage:portage "${cache}" || die - fi + if ! use prefix; then + # note: if this is done in src_install(), portage:portage + # ownership may be reset to root + fowners portage:portage "${EROOT%/}"/var/cache/eix fi local obs=${EROOT%/}/var/cache/eix.previous |