commit: 70d12c8b741e74bfdc4b5125c3b178703e3ed6f2
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Mar 18 18:53:33 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Mar 18 18:53:33 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=70d12c8b
dev-perl/Bio-EnsEMBL: use perl_domodule
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-perl/Bio-EnsEMBL/Bio-EnsEMBL-9999.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dev-perl/Bio-EnsEMBL/Bio-EnsEMBL-9999.ebuild
b/dev-perl/Bio-EnsEMBL/Bio-EnsEMBL-9999.ebuild
index 80014f94f..f2d7c6a54 100644
--- a/dev-perl/Bio-EnsEMBL/Bio-EnsEMBL-9999.ebuild
+++ b/dev-perl/Bio-EnsEMBL/Bio-EnsEMBL-9999.ebuild
@@ -18,7 +18,6 @@ S="${WORKDIR}"
src_install(){
perl_set_version
- insinto "${VENDOR_LIB}" # do not add "${PN}" so the the PERL path
starts with Bio/
find . -name t | xargs rm -rf || die
find . -name test.pl | xargs rm -f || die
find . -name \*.example | xargs rm -f || die
@@ -27,5 +26,5 @@ src_install(){
find . -name \*.conf | xargs rm -f || die
find . -name travisci | xargs rm -rf || die
find . -name sql | xargs rm -rf || die
- find . -name modules | while read d; do pushd "$d"; doins -r *; popd;
done || die
+ find . -name modules | while read d; do pushd "$d"; perl_domodule -r *;
popd; done || die
}