diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2019-01-06 16:10:21 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-01-06 16:11:41 +0100 |
commit | 59d4f75abd7dc6b691a95b5447133922ff09ea3f (patch) | |
tree | 2afc7489bb0895e3da1b6804f9f405ec074d9b10 /sys-apps/man-db | |
parent | sys-apps/man-db: Bump to version 2.8.5 (diff) | |
download | gentoo-59d4f75abd7dc6b691a95b5447133922ff09ea3f.tar.gz gentoo-59d4f75abd7dc6b691a95b5447133922ff09ea3f.tar.bz2 gentoo-59d4f75abd7dc6b691a95b5447133922ff09ea3f.zip |
sys-apps/man-db: Synced live ebuild.
Attempt to fix root privilege escalation.
Bug: https://bugs.gentoo.org/662438
Bug: https://bugs.gentoo.org/666404
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-apps/man-db')
-rw-r--r-- | sys-apps/man-db/man-db-9999.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/sys-apps/man-db/man-db-9999.ebuild b/sys-apps/man-db/man-db-9999.ebuild index 670cbc0de539..c6db5d3398e6 100644 --- a/sys-apps/man-db/man-db-9999.ebuild +++ b/sys-apps/man-db/man-db-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit ltprune user versionator +inherit user eapi7-ver DESCRIPTION="a man replacement that utilizes berkdb instead of flat files" HOMEPAGE="http://www.nongnu.org/man-db/" @@ -17,7 +17,7 @@ fi LICENSE="GPL-3" SLOT="0" -IUSE="berkdb +gdbm +manpager nls seccomp selinux static-libs zlib" +IUSE="berkdb +gdbm +manpager nls +seccomp selinux static-libs zlib" CDEPEND=" !sys-apps/man @@ -57,9 +57,8 @@ pkg_setup() { src_configure() { export ac_cv_lib_z_gzopen=$(usex zlib) local myeconfargs=( - --docdir='$(datarootdir)'/doc/${PF} --with-systemdtmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d - --enable-setuid + --disable-setuid #662438 --enable-cache-owner=man --with-sections="1 1p 8 2 3 3p 4 5 6 7 9 0p tcl n l p o 1x 2x 3x 4x 5x 6x 7x 8x" $(use_enable nls) @@ -78,10 +77,10 @@ src_configure() { src_install() { default dodoc docs/{HACKING,TODO} - prune_libtool_files + find "${ED}" -name "*.la" -delete || die exeinto /etc/cron.daily - newexe "${FILESDIR}"/man-db.cron man-db #289884 + newexe "${FILESDIR}"/man-db.cron-r1 man-db #289884 } pkg_preinst() { @@ -115,8 +114,8 @@ pkg_preinst() { } pkg_postinst() { - if [[ $(get_version_component_range 2 ${REPLACING_VERSIONS}) -lt 7 ]] ; then + if [[ $(ver_cut 2 ${REPLACING_VERSIONS}) -lt 7 ]] ; then einfo "Rebuilding man-db from scratch with new database format!" - mandb --quiet --create + su man -s /bin/sh -c 'mandb --quiet --create' 2>/dev/null fi } |