mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Per the category metadata, app-doc/ is reserved for documentation *files* and not software. Move it to app-text/ where it seems a better fit. Signed-off-by: Michał Górny <mgorny@gentoo.org>
34 lines
614 B
Bash
34 lines
614 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit gnome2
|
|
|
|
DESCRIPTION="C++ bindings for gtksourceview"
|
|
HOMEPAGE="https://wiki.gnome.org/Projects/GtkSourceView"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="3.0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
IUSE="doc"
|
|
|
|
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}"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
doc? ( app-text/doxygen )
|
|
"
|
|
|
|
src_configure() {
|
|
gnome2_src_configure $(use_enable doc documentation)
|
|
}
|