blob: 7555e05a368a4fadaa2daadb8e8011f8d4d773c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2006 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.3 2006/11/17 21:57:46 chainsaw Exp $
WANT_AUTOCONF="1.10"
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="X11"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
IUSE="sdl truetype X"
DEPEND="sdl? ( >=media-libs/libsdl-1.2.0 )
X? ( x11-libs/libX11 )
truetype? ( >=media-libs/freetype-2 )"
src_compile() {
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() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc readme authors ChangeLog news
}
|