diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2020-08-22 14:49:26 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-08-22 15:41:32 +0200 |
commit | d0958febe6ef1f726c63e19cad81f49b75f594a3 (patch) | |
tree | bf8d1b6162e01aa499a4144e8800aa3f9690c781 /net-dns | |
parent | net-dns/dnsviz: dep on setuptools is satisfied by eclass (diff) | |
download | gentoo-d0958febe6ef1f726c63e19cad81f49b75f594a3.tar.gz gentoo-d0958febe6ef1f726c63e19cad81f49b75f594a3.tar.bz2 gentoo-d0958febe6ef1f726c63e19cad81f49b75f594a3.zip |
net-dns/dnsviz: fix /usr/share/doc installdir
Package-Manager: Portage-3.0.3, Repoman-3.0.0
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/dnsviz/dnsviz-0.8.2-r1.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net-dns/dnsviz/dnsviz-0.8.2-r1.ebuild b/net-dns/dnsviz/dnsviz-0.8.2-r1.ebuild index 05677e4ef833..c2613635b249 100644 --- a/net-dns/dnsviz/dnsviz-0.8.2-r1.ebuild +++ b/net-dns/dnsviz/dnsviz-0.8.2-r1.ebuild @@ -27,7 +27,10 @@ PATCHES=( "${FILESDIR}"/${PN}-0.8.2-add-ed448-support.patch ) python_prepare_all() { # Fix the ebuild to use correct FHS/Gentoo policy paths for 0.8.2 - sed -i "s*share/doc/dnsviz*share/doc/dnsviz-${PV}*g" "${S}"/setup.py || die + sed -i \ + -e "s|share/doc/dnsviz|share/doc/${PF}|g" \ + "${S}"/setup.py \ + || die distutils-r1_python_prepare_all } |