public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libgnomecanvasmm/files/, dev-cpp/libgnomecanvasmm/
@ 2022-03-09 14:43 David Seifert
  0 siblings, 0 replies; only message in thread
From: David Seifert @ 2022-03-09 14:43 UTC (permalink / raw
  To: gentoo-commits

commit:     6016de29b062cda2cf156d729c3dc4d0e9e57346
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  9 14:43:09 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 14:43:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6016de29

dev-cpp/libgnomecanvasmm: update EAPI 5 -> 8

Bug: https://bugs.gentoo.org/808375
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 ...canvasmm-2.26.0-disable-building-examples.patch | 13 +++++
 .../libgnomecanvasmm-2.26.0-r1.ebuild              | 56 ----------------------
 .../libgnomecanvasmm-2.26.0-r2.ebuild              | 45 +++++++++++++++++
 3 files changed, 58 insertions(+), 56 deletions(-)

diff --git a/dev-cpp/libgnomecanvasmm/files/libgnomecanvasmm-2.26.0-disable-building-examples.patch b/dev-cpp/libgnomecanvasmm/files/libgnomecanvasmm-2.26.0-disable-building-examples.patch
new file mode 100644
index 000000000000..e750a355967f
--- /dev/null
+++ b/dev-cpp/libgnomecanvasmm/files/libgnomecanvasmm-2.26.0-disable-building-examples.patch
@@ -0,0 +1,13 @@
+don't waste time building the examples
+
+--- a/Makefile.in
++++ b/Makefile.in
+@@ -195,7 +195,7 @@
+ top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+-SUBDIRS = tools libgnomecanvas docs examples demos
++SUBDIRS = tools libgnomecanvas docs demos
+ DIST_SUBDIRS = $(SUBDIRS) scripts 
+ EXTRA_DIST = libgnomecanvasmm.spec.in \
+ 		  build_shared/Makefile_build.am_fragment \

diff --git a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild b/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild
deleted file mode 100644
index d18b3c0b1342..000000000000
--- a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME_TARBALL_SUFFIX="bz2"
-
-inherit flag-o-matic gnome2
-
-DESCRIPTION="C++ bindings for libgnomecanvas"
-HOMEPAGE="https://www.gtkmm.org"
-
-LICENSE="LGPL-2.1"
-SLOT="2.6"
-KEYWORDS="~alpha amd64 arm ~ia64 ppc ppc64 sparc x86"
-IUSE="doc examples"
-
-RDEPEND="
-	>=gnome-base/libgnomecanvas-2.6
-	>=dev-cpp/gtkmm-2.4:2.4
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	doc? ( app-doc/doxygen )
-"
-
-src_prepare() {
-	if ! use examples; then
-		# don't waste time building the examples
-		sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || \
-			die "sed Makefile.in failed"
-	fi
-	gnome2_src_prepare
-	append-cxxflags -std=c++11 #568300
-}
-
-src_compile() {
-	gnome2_src_compile
-
-	if use doc; then
-		cd "${S}/docs/reference"
-		emake all
-	fi
-}
-
-src_install() {
-	gnome2_src_install
-
-	if use doc ; then
-		dohtml -r docs/reference/html/*
-	fi
-
-	if use examples; then
-		cp -R examples "${D}/usr/share/doc/${PF}"
-	fi
-}

diff --git a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r2.ebuild b/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r2.ebuild
new file mode 100644
index 000000000000..d403ca365935
--- /dev/null
+++ b/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+GNOME_TARBALL_SUFFIX="bz2"
+
+inherit gnome2
+
+DESCRIPTION="C++ bindings for libgnomecanvas"
+HOMEPAGE="https://www.gtkmm.org"
+
+LICENSE="LGPL-2.1"
+SLOT="2.6"
+KEYWORDS="~alpha amd64 arm ~ia64 ppc ppc64 sparc x86"
+IUSE="doc"
+
+RDEPEND="
+	>=gnome-base/libgnomecanvas-2.6
+	>=dev-cpp/gtkmm-2.4:2.4
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	doc? ( app-doc/doxygen )
+"
+
+PATCHES=( "${FILESDIR}"/${P}-disable-building-examples.patch )
+
+src_compile() {
+	gnome2_src_compile
+
+	if use doc; then
+		emake -C docs/reference all
+		HTML_DOCS=( docs/reference/html/. )
+	fi
+}
+
+src_install() {
+	gnome2_src_install
+
+	rm examples/Makefile* examples/*/Makefile* || die
+	dodoc -r examples
+	docompress -x /usr/share/doc/${PF}/examples
+}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-03-09 14:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-09 14:43 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libgnomecanvasmm/files/, dev-cpp/libgnomecanvasmm/ David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox