blob: b1a1f5164c105a3d06985396ae8195b37fbf79c3 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/diacanvas/diacanvas-0.10.0.ebuild,v 1.2 2004/06/24 21:59:12 agriffis Exp $
inherit gnome2
MY_P=${PN}2-${PV}
DESCRIPTION="Gnome library to draw diagrams"
HOMEPAGE="http://diacanvas.sourceforge.net/"
SRC_URI="mirror://sourceforge/diacanvas/${MY_P}.tar.gz"
IUSE="python gnome doc"
SLOT="0"
KEYWORDS="~x86"
LICENSE="LGPL-2.1"
RDEPEND=">=dev-libs/glib-2
>=media-libs/libart_lgpl-2
>=gnome-base/libgnomecanvas-2
python? ( >=dev-lang/python-2.2
>=dev-python/pygtk-2 )
gnome? ( >=gnome-base/libgnomeprint-2.2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( >=dev-util/gtk-doc-1 )"
S=${WORKDIR}/${MY_P}
G2CONF="${G2CONF} $(use_enable gnome gnome-print) $(use_enable python)"
DOCS="AUTHORS COPYING* ChangeLog INSTALL NEWS README"
# 2 hacks needed for the python bindings to build
MAKEOPTS="${MAKEOPTS} -j1"
USE_DESTDIR="1"
|