diff options
author | 2006-12-30 10:17:28 +0000 | |
---|---|---|
committer | 2006-12-30 10:17:28 +0000 | |
commit | ed8139efceebefa424f03bda2d1b3f7b4dd434ad (patch) | |
tree | 2c69edc99ea9647d682018d8c3fd9a6a35f0d32b /x11-libs/agg/agg-2.4.ebuild | |
parent | hippodraw version 1.19.1 update (diff) | |
download | sci-ed8139efceebefa424f03bda2d1b3f7b4dd434ad.tar.gz sci-ed8139efceebefa424f03bda2d1b3f7b4dd434ad.tar.bz2 sci-ed8139efceebefa424f03bda2d1b3f7b4dd434ad.zip |
agg removed, now in main tree
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@450 32389bae-6d03-0410-99cf-db05cde120eb
Diffstat (limited to 'x11-libs/agg/agg-2.4.ebuild')
-rw-r--r-- | x11-libs/agg/agg-2.4.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/x11-libs/agg/agg-2.4.ebuild b/x11-libs/agg/agg-2.4.ebuild deleted file mode 100644 index 000b21719..000000000 --- a/x11-libs/agg/agg-2.4.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -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" -# get license from http://www.fsf.org/licensing/licenses/index_html#ModifiedBSD -LICENSE="ModifiedBSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="sdl truetype X" - -DEPEND="sdl? ( >=media-libs/libsdl-1.2.0 ) - X? ( || ( x11-libs/libX11 virtual/x11 ) ) - truetype? ( >=media-libs/freetype-2 )" - -src_compile() { - # work around buggy sdl test - use sdl || sed -i -e 's/sdl//' src/platform/Makefile.am - - eautoreconf || die "eautoreconf failed" - # 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() { - make DESTDIR="${D}" install || die "make install failed" - dodoc readme authors ChangeLog news -} |