1 |
drac |
1.9 |
# Copyright 1999-2008 Gentoo Foundation |
2 |
compnerd |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
drac |
1.9 |
# $Header: $ |
4 |
compnerd |
1.1 |
|
5 |
drac |
1.4 |
inherit autotools eutils |
6 |
|
|
|
7 |
drac |
1.9 |
DESCRIPTION="a command line viewer for SVG files" |
8 |
drac |
1.3 |
HOMEPAGE="http://cairographics.org" |
9 |
compnerd |
1.1 |
SRC_URI="http://cairographics.org/snapshots/${P}.tar.gz" |
10 |
drac |
1.9 |
|
11 |
compnerd |
1.1 |
LICENSE="BSD" |
12 |
|
|
SLOT="0" |
13 |
drac |
1.9 |
KEYWORDS="amd64 ppc x86" |
14 |
compnerd |
1.1 |
IUSE="" |
15 |
drac |
1.9 |
|
16 |
|
|
RDEPEND="x11-libs/libsvg-cairo" |
17 |
joshuabaergen |
1.2 |
DEPEND="${RDEPEND} |
18 |
drac |
1.3 |
x11-libs/libXt |
19 |
|
|
x11-libs/libXcursor" |
20 |
compnerd |
1.1 |
|
21 |
drac |
1.4 |
src_unpack() { |
22 |
|
|
unpack ${A} |
23 |
|
|
cd "${S}" |
24 |
|
|
epatch "${FILESDIR}"/${P}-asneeded.patch |
25 |
|
|
eautoreconf |
26 |
|
|
} |
27 |
|
|
|
28 |
compnerd |
1.1 |
src_install() { |
29 |
drac |
1.5 |
emake DESTDIR="${D}" install || die "emake install failed." |
30 |
drac |
1.6 |
dodoc AUTHORS ChangeLog NEWS README |
31 |
compnerd |
1.1 |
} |