blob: 63f9ad1e54e9b7513a0c6b9d821e93465adb70cd (
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
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/flowcanvas/flowcanvas-0.6.4.ebuild,v 1.3 2012/05/05 03:52:25 jdhore Exp $
EAPI=2
inherit toolchain-funcs multilib 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}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
src_prepare() {
epatch "${FILESDIR}/ldconfig.patch"
}
src_configure() {
tc-export CC CXX CPP AR RANLIB
./waf configure \
--prefix=/usr \
--libdir=/usr/$(get_libdir) \
--htmldir=/usr/share/doc/${PF}/html \
$(use debug && echo "--debug") \
$(use doc && echo "--docs") \
|| die
}
src_compile() {
./waf || die
}
src_install() {
./waf install --destdir="${D}" || die
dodoc AUTHORS README ChangeLog
}
|