diff options
author | 2021-02-06 17:02:32 -0500 | |
---|---|---|
committer | 2021-02-15 20:25:23 -0500 | |
commit | 20a045fef9f4b11286882873a10936bb219be6f2 (patch) | |
tree | 694fa75325c4ea5f52caf01a9131a6d9a7fbbc6b /dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3-r1.ebuild | |
parent | app-text/cherrytree: Specify the pangomm slot (diff) | |
download | gentoo-20a045fef9f4b11286882873a10936bb219be6f2.tar.gz gentoo-20a045fef9f4b11286882873a10936bb219be6f2.tar.bz2 gentoo-20a045fef9f4b11286882873a10936bb219be6f2.zip |
dev-cpp/gtksourceviewmm: Specify the atkmm+cairomm slots
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: David Michael <fedora.dm0@gmail.com>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3-r1.ebuild')
-rw-r--r-- | dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3-r1.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3-r1.ebuild b/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3-r1.ebuild deleted file mode 100644 index 0d30e55b5a85..000000000000 --- a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" - -inherit flag-o-matic gnome2 - -DESCRIPTION="C++ bindings for gtksourceview" -HOMEPAGE="https://wiki.gnome.org/Projects/GtkSourceView" - -KEYWORDS="amd64 ppc x86" -IUSE="doc" -SLOT="2.0" -LICENSE="LGPL-2.1" - -RDEPEND=" - >=dev-cpp/gtkmm-2.12:2.4 - dev-cpp/atkmm - >=x11-libs/gtksourceview-2.10.0:2.0 - !>=dev-cpp/libgtksourceviewmm-1 -" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-doc/doxygen ) -" - -src_prepare() { - gnome2_src_prepare - - # Remove docs from SUBDIRS so that docs are not installed, as - # we handle it in src_install. - sed -i -e 's|^\(SUBDIRS =.*\)$(doc_subdirs)\(.*\)|\1\2|' Makefile.in || \ - die "sed Makefile.in failed" -} - -src_configure() { - append-cxxflags -std=c++11 - gnome2_src_configure \ - $(use_enable doc documentation) \ - --disable-static -} - -src_install() { - gnome2_src_install - use doc && dohtml -r docs/reference/html/* -} |