blob: a44c29f5fc79f69422ce870389ba9f52bf8fe366 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="C++ bindings for gtksourceview"
HOMEPAGE="https://wiki.gnome.org/Projects/GtkSourceView"
KEYWORDS="amd64 ppc x86"
IUSE="doc"
SLOT="3.0"
LICENSE="LGPL-2.1"
RDEPEND="
>=dev-cpp/glibmm-2.46.1:2
>=dev-cpp/gtkmm-3.18.0:3.0
>=x11-libs/gtksourceview-3.18.0:3.0
dev-cpp/atkmm:0
dev-cpp/cairomm:0
dev-cpp/pangomm:1.4
"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )
"
src_configure() {
DOCS="AUTHORS ChangeLog* NEWS README"
gnome2_src_configure $(use_enable doc documentation)
}
|