summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-04-13 00:10:43 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-04-13 00:10:43 +0000
commit4d4b37c525a06d895575b732c6b2689d9417e8a1 (patch)
tree805be21dc787197883fdc065d060fcd376664181 /x11-libs/agg
parentRemove old. (diff)
downloadgentoo-2-4d4b37c525a06d895575b732c6b2689d9417e8a1.tar.gz
gentoo-2-4d4b37c525a06d895575b732c6b2689d9417e8a1.tar.bz2
gentoo-2-4d4b37c525a06d895575b732c6b2689d9417e8a1.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'x11-libs/agg')
-rw-r--r--x11-libs/agg/ChangeLog7
-rw-r--r--x11-libs/agg/agg-2.5.ebuild49
2 files changed, 5 insertions, 51 deletions
diff --git a/x11-libs/agg/ChangeLog b/x11-libs/agg/ChangeLog
index 19cdbcd49b37..2aa642083aab 100644
--- a/x11-libs/agg/ChangeLog
+++ b/x11-libs/agg/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/agg
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/agg/ChangeLog,v 1.29 2013/09/09 13:01:34 pinkbyte Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/agg/ChangeLog,v 1.30 2015/04/13 00:10:43 mrueg Exp $
+
+ 13 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -agg-2.5.ebuild:
+ Remove old.
09 Sep 2013; Sergey Popov <pinkbyte@gentoo.org> agg-2.5-r2.ebuild:
Add ~arm keyword, wrt bug #449762
diff --git a/x11-libs/agg/agg-2.5.ebuild b/x11-libs/agg/agg-2.5.ebuild
deleted file mode 100644
index e4fa14278dba..000000000000
--- a/x11-libs/agg/agg-2.5.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/agg/agg-2.5.ebuild,v 1.16 2012/05/05 03:52:29 jdhore Exp $
-
-inherit eutils autotools
-
-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 ~hppa ppc sparc x86 ~x86-fbsd"
-IUSE="sdl truetype X"
-
-RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0 )
- X? ( x11-libs/libX11 )
- truetype? ( >=media-libs/freetype-2 )"
- # sdl.m4 missing in the tarball
-DEPEND="media-libs/libsdl
- virtual/pkgconfig
- ${RDEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -r -i \
- -e 's:^(.*) -L@.*:\1:' \
- src/platform/X11/Makefile.am || die "404"
- eautoreconf
-}
-
-src_compile() {
- # examples are not (yet) installed, so do not compile them
- econf \
- --enable-ctrl \
- --enable-gpc \
- --disable-examples \
- $(use_enable sdl sdltest) \
- $(use_enable truetype freetype) \
- $(use_with X x) \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc readme authors ChangeLog news
-}