Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
Date: Mon, 28 May 2018 17:55:36
Message-Id: 1527530126.3b865b7853c88ee669498f8b11d40815833b83fe.pacho@gentoo
1 commit: 3b865b7853c88ee669498f8b11d40815833b83fe
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 28 17:54:28 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Mon May 28 17:55:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b865b78
7
8 x11-libs/agg: Fix static libs handling, only install needed .la files
9
10 (none are needed with -static-libs and *some* are needed with static)
11
12 Package-Manager: Portage-2.3.38, Repoman-2.3.9
13
14 x11-libs/agg/agg-2.5-r3.ebuild | 10 +++++++---
15 1 file changed, 7 insertions(+), 3 deletions(-)
16
17 diff --git a/x11-libs/agg/agg-2.5-r3.ebuild b/x11-libs/agg/agg-2.5-r3.ebuild
18 index d9bf36876ff..de2db3f9f25 100644
19 --- a/x11-libs/agg/agg-2.5-r3.ebuild
20 +++ b/x11-libs/agg/agg-2.5-r3.ebuild
21 @@ -2,8 +2,7 @@
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 -
26 -inherit autotools
27 +inherit autotools ltprune
28
29 DESCRIPTION="High quality rendering engine library for C++"
30 HOMEPAGE="http://antigrain.com/"
31 @@ -46,11 +45,16 @@ src_configure() {
32 local myeconfargs=(
33 --disable-ctrl
34 --disable-examples
35 - --disable-dependency-tracking
36 $(use_enable gpc)
37 $(use_enable sdl)
38 + $(use_enable static-libs static)
39 $(use_enable truetype freetype)
40 $(use_with X x)
41 )
42 econf ${myeconfargs[@]}
43 }
44 +
45 +src_install() {
46 + default
47 + prune_libtool_files
48 +}