blob: 441f009ea8c3cb68b074075b1d4426b7712eb6c9 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit distutils eutils
DESCRIPTION="Python bindings for Graphviz"
HOMEPAGE="http://yapgvb.sourceforge.net/"
SRC_URI="mirror://sourceforge/yapgvb/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=dev-lang/python-2.4
>=media-gfx/graphviz-2.6"
DEPEND="${RDEPEND}
dev-libs/boost"
src_prepare() {
epatch "${FILESDIR}"/boost_include_path.patch
}
src_install() {
distutils_src_install
doenvd "${FILESDIR}"/90graphviz || die
}
|