diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-05-31 11:19:03 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-31 11:19:03 +0200 |
commit | c5880c6967c94be368390d451521666b2eaae24a (patch) | |
tree | 5c616fdef892cfbcaf99709fbfeaecf9bc30262b /sci-astronomy | |
parent | net-proxy/dante: drop deprecated ltprune eclass (diff) | |
download | gentoo-c5880c6967c94be368390d451521666b2eaae24a.tar.gz gentoo-c5880c6967c94be368390d451521666b2eaae24a.tar.bz2 gentoo-c5880c6967c94be368390d451521666b2eaae24a.zip |
sci-astronomy/aatm: drop deprecated ltprune eclass
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/aatm/aatm-0.6.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sci-astronomy/aatm/aatm-0.6.ebuild b/sci-astronomy/aatm/aatm-0.6.ebuild index 4d88214c7971..7c9effae287a 100644 --- a/sci-astronomy/aatm/aatm-0.6.ebuild +++ b/sci-astronomy/aatm/aatm-0.6.ebuild @@ -3,8 +3,6 @@ EAPI=6 -inherit ltprune - DESCRIPTION="Atmospheric Modelling for ALMA Observatory" HOMEPAGE="https://svn.cv.nrao.edu/view/aatm/devel/casa/" # tar ball is made from the HOMEPAGE and running ./configure && make dist @@ -31,7 +29,11 @@ src_compile() { src_install() { default - use static-libs || prune_libtool_files --all + + if ! use static-libs; then + find "${ED}" -name '*.la' -delete || die + fi + if use doc; then insinto /usr/share/doc/${PF} doins -r developer/html |