blob: 6e4b7d65682534c981a7a4605f5da0ea435c7aac (
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="C++ bindings for x11-libs/goocanvas"
HOMEPAGE="http://live.gnome.org/GooCanvas"
LICENSE="LGPL-2.1"
SLOT="2.0"
KEYWORDS="~amd64"
IUSE="static-libs"
RDEPEND="
>=dev-cpp/glibmm-2.14.2:2
>=dev-cpp/gtkmm-2.91.3:3.0
>=x11-libs/goocanvas-2.0.1:2.0
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
src_configure() {
gnome2_src_configure $(use_enable static-libs static)
}
|