Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/
Date: Mon, 08 Oct 2018 11:04:18
Message-Id: 1538996631.2a54c0e14644702a3f075d04a95f5a4ab27a62b5.zlogene@gentoo
1 commit: 2a54c0e14644702a3f075d04a95f5a4ab27a62b5
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 8 11:03:51 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 8 11:03:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a54c0e1
7
8 x11-libs/agg: Drop old (EAPI=2)
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 x11-libs/agg/agg-2.5-r2.ebuild | 59 ------------------------------------------
14 1 file changed, 59 deletions(-)
15
16 diff --git a/x11-libs/agg/agg-2.5-r2.ebuild b/x11-libs/agg/agg-2.5-r2.ebuild
17 deleted file mode 100644
18 index 8228f01acbc..00000000000
19 --- a/x11-libs/agg/agg-2.5-r2.ebuild
20 +++ /dev/null
21 @@ -1,59 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="2"
26 -
27 -inherit eutils autotools base
28 -
29 -DESCRIPTION="Anti-Grain Geometry - A High Quality Rendering Engine for C++"
30 -HOMEPAGE="http://antigrain.com/"
31 -SRC_URI="http://antigrain.com/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 sparc x86 ~x86-fbsd"
36 -IUSE="+gpc +truetype +X"
37 -
38 -# preffer X with enabled xcb, really
39 -RDEPEND="
40 - media-libs/libsdl[X?]
41 - X? ( >=x11-libs/libX11-1.3.99.901 )
42 - truetype? ( media-libs/freetype:2 )
43 -"
44 -DEPEND="${RDEPEND}
45 - virtual/pkgconfig
46 -"
47 -
48 -# taken from debian
49 -PATCHES=(
50 - "${FILESDIR}/${PV}/02_maintainer_mode.patch"
51 - "${FILESDIR}/${PV}/04_no_rpath.patch"
52 -)
53 -
54 -src_prepare() {
55 - base_src_prepare
56 - sed -r -i \
57 - -e 's:^(.*) -L@.*:\1:' \
58 - src/platform/X11/Makefile.am || die "Failed to sed"
59 - # fix building against automake-1.12, bug 420701
60 - sed -i '/^AM_C_PROTOTYPES/d' configure.in || die
61 - eautoreconf
62 -}
63 -
64 -src_configure() {
65 - # examples are not (yet) installed, so do not compile them
66 - # sdl is harddep only sdl-tests are optional so we enable them anyway
67 - econf \
68 - --enable-ctrl \
69 - --enable-sdltest \
70 - --disable-examples \
71 - --disable-dependency-tracking \
72 - $(use_enable gpc gpc) \
73 - $(use_enable truetype freetype) \
74 - $(use_with X x)
75 -}
76 -
77 -src_install() {
78 - emake DESTDIR="${D}" install || die "emake install failed"
79 - dodoc readme authors ChangeLog news
80 -}