blob: 81bb942352bccbaa66d82b1208dcce69712fda73 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/goocanvas/goocanvas-0.4.ebuild,v 1.2 2006/12/14 22:07:19 hansmi Exp $
IUSE=""
DESCRIPTION="GooCanvas is a canvas widget for GTK+ using cairo 2D"
HOMEPAGE="http://goocanvas.sourceforge.net/"
SRC_URI="mirror://sourceforge/goocanvas/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~ppc"
DEPEND="
>=x11-libs/gtk+-2.8.0
x11-libs/cairo
dev-util/pkgconfig
"
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
}
|