diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-13 01:09:57 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-13 22:07:26 +0100 |
commit | 22c9999c3d1ec853efe1dd3444421ae886085b70 (patch) | |
tree | cd0538b6d33120ae885435eae0d94f3c5b2e544b /sci-libs | |
parent | sci-astronomy/xephem: drop 3.7.7 (diff) | |
download | gentoo-22c9999c3d1ec853efe1dd3444421ae886085b70.tar.gz gentoo-22c9999c3d1ec853efe1dd3444421ae886085b70.tar.bz2 gentoo-22c9999c3d1ec853efe1dd3444421ae886085b70.zip |
sci-libs/clblast: fix DeprecatedInsinto
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/clblast/clblast-0.10.0.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sci-libs/clblast/clblast-0.10.0.ebuild b/sci-libs/clblast/clblast-0.10.0.ebuild index d3ef4a3ebb03..70341627123f 100644 --- a/sci-libs/clblast/clblast-0.10.0.ebuild +++ b/sci-libs/clblast/clblast-0.10.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -10,6 +10,7 @@ MYPN="CLBlast" DESCRIPTION="Tuned OpenCL BLAS" HOMEPAGE="https://github.com/CNugteren/CLBlast" SRC_URI="https://github.com/CNugteren/${MYPN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MYPN}-${PV}" LICENSE="Apache-2.0" SLOT="0" @@ -24,7 +25,6 @@ DEPEND="${RDEPEND} virtual/pkgconfig ) " -S="${WORKDIR}/${MYPN}-${PV}" src_prepare() { # no forced optimisation, libdir @@ -61,8 +61,8 @@ src_install() { dodoc README.md CONTRIBUTING.md CHANGELOG use doc && dodoc -r doc if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r samples/* + docinto examples + dodoc -r samples/. docompress -x /usr/share/doc/${PF}/examples fi } |