summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2018-10-08 14:03:51 +0300
committerMikle Kolyada <zlogene@gentoo.org>2018-10-08 14:03:51 +0300
commit2a54c0e14644702a3f075d04a95f5a4ab27a62b5 (patch)
treec73e927e45403878bd58bca59dcdd1996052e105 /x11-libs
parentx11-libs/agg: ppc stable wrt bug #648870 (diff)
downloadgentoo-2a54c0e14644702a3f075d04a95f5a4ab27a62b5.tar.gz
gentoo-2a54c0e14644702a3f075d04a95f5a4ab27a62b5.tar.bz2
gentoo-2a54c0e14644702a3f075d04a95f5a4ab27a62b5.zip
x11-libs/agg: Drop old (EAPI=2)
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/agg/agg-2.5-r2.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/x11-libs/agg/agg-2.5-r2.ebuild b/x11-libs/agg/agg-2.5-r2.ebuild
deleted file mode 100644
index 8228f01acbce..000000000000
--- a/x11-libs/agg/agg-2.5-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils autotools base
-
-DESCRIPTION="Anti-Grain Geometry - A High Quality Rendering Engine for C++"
-HOMEPAGE="http://antigrain.com/"
-SRC_URI="http://antigrain.com/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 sparc x86 ~x86-fbsd"
-IUSE="+gpc +truetype +X"
-
-# preffer X with enabled xcb, really
-RDEPEND="
- media-libs/libsdl[X?]
- X? ( >=x11-libs/libX11-1.3.99.901 )
- truetype? ( media-libs/freetype:2 )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-# taken from debian
-PATCHES=(
- "${FILESDIR}/${PV}/02_maintainer_mode.patch"
- "${FILESDIR}/${PV}/04_no_rpath.patch"
-)
-
-src_prepare() {
- base_src_prepare
- sed -r -i \
- -e 's:^(.*) -L@.*:\1:' \
- src/platform/X11/Makefile.am || die "Failed to sed"
- # fix building against automake-1.12, bug 420701
- sed -i '/^AM_C_PROTOTYPES/d' configure.in || die
- eautoreconf
-}
-
-src_configure() {
- # examples are not (yet) installed, so do not compile them
- # sdl is harddep only sdl-tests are optional so we enable them anyway
- econf \
- --enable-ctrl \
- --enable-sdltest \
- --disable-examples \
- --disable-dependency-tracking \
- $(use_enable gpc gpc) \
- $(use_enable truetype freetype) \
- $(use_with X x)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc readme authors ChangeLog news
-}