diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-05-28 19:54:28 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-05-28 19:55:26 +0200 |
commit | 3b865b7853c88ee669498f8b11d40815833b83fe (patch) | |
tree | 62559a05160ed8caa5f057ea2c775aec9a4af8c2 /x11-libs/agg | |
parent | x11-libs/agg: Get newer fixed ebuild from sci overlay (diff) | |
download | gentoo-3b865b7853c88ee669498f8b11d40815833b83fe.tar.gz gentoo-3b865b7853c88ee669498f8b11d40815833b83fe.tar.bz2 gentoo-3b865b7853c88ee669498f8b11d40815833b83fe.zip |
x11-libs/agg: Fix static libs handling, only install needed .la files
(none are needed with -static-libs and *some* are needed with static)
Package-Manager: Portage-2.3.38, Repoman-2.3.9
Diffstat (limited to 'x11-libs/agg')
-rw-r--r-- | x11-libs/agg/agg-2.5-r3.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/x11-libs/agg/agg-2.5-r3.ebuild b/x11-libs/agg/agg-2.5-r3.ebuild index d9bf36876ffb..de2db3f9f25a 100644 --- a/x11-libs/agg/agg-2.5-r3.ebuild +++ b/x11-libs/agg/agg-2.5-r3.ebuild @@ -2,8 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 - -inherit autotools +inherit autotools ltprune DESCRIPTION="High quality rendering engine library for C++" HOMEPAGE="http://antigrain.com/" @@ -46,11 +45,16 @@ src_configure() { local myeconfargs=( --disable-ctrl --disable-examples - --disable-dependency-tracking $(use_enable gpc) $(use_enable sdl) + $(use_enable static-libs static) $(use_enable truetype freetype) $(use_with X x) ) econf ${myeconfargs[@]} } + +src_install() { + default + prune_libtool_files +} |