blob: cb73288cf8866b928d4d8b8dac119516ce7d9611 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsvg-cairo/libsvg-cairo-0.1.4.ebuild,v 1.8 2005/02/04 22:42:19 twp Exp $
DESCRIPTION="Render SVG content using cairo"
HOMEPAGE="http://xsvg.org/"
SRC_URI="http://cairographics.org/snapshots/${P}.tar.gz"
LICENSE="X11"
SLOT="0"
KEYWORDS="x86 ppc ~amd64 ~sparc"
IUSE=""
DEPEND="x11-libs/cairo
media-libs/libsvg"
inherit eutils
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/libsvg-cairo-stdarg_h.patch
}
src_compile() {
econf || die
emake || die
}
src_install() {
make install DESTDIR=${D} || die
}
|