43 lines
1 KiB
Bash
43 lines
1 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/x11-libs/flowcanvas/flowcanvas-0.7.1.ebuild,v 1.7 2013/11/27 21:06:39 aballier Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit waf-utils python eutils
|
|
|
|
DESCRIPTION="Gtkmm/Gnomecanvasmm widget for boxes and lines environments"
|
|
HOMEPAGE="http://wiki.drobilla.net/FlowCanvas"
|
|
SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="debug doc"
|
|
|
|
RDEPEND="dev-libs/boost
|
|
>=dev-cpp/gtkmm-2.4:2.4
|
|
>=dev-cpp/libgnomecanvasmm-2.6:2.6
|
|
media-gfx/graphviz"
|
|
DEPEND="${RDEPEND}
|
|
=dev-lang/python-2*
|
|
virtual/pkgconfig
|
|
doc? ( app-doc/doxygen )"
|
|
|
|
DOCS=( AUTHORS README ChangeLog )
|
|
|
|
pkg_setup() {
|
|
python_set_active_version 2
|
|
}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}/ldconfig2.patch"
|
|
has_version '>=media-gfx/graphviz-2.34' && epatch "${FILESDIR}/gv234.patch"
|
|
}
|
|
|
|
src_configure() {
|
|
waf-utils_src_configure \
|
|
--htmldir=/usr/share/doc/${PF}/html \
|
|
$(use debug && echo "--debug") \
|
|
$(use doc && echo "--doc")
|
|
}
|