From d2879f5f9faf72bfd16f366e697a11b911b515d9 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 8 Feb 2021 17:13:52 -0500 Subject: app-text/diff-pdf: new revision using the gtk-3 slot of wxGTK. Closes: https://bugs.gentoo.org/769608 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Michael Orlitzky --- app-text/diff-pdf/diff-pdf-0.4.1-r1.ebuild | 39 ++++++++++++++++++++++++++++++ app-text/diff-pdf/diff-pdf-0.4.1.ebuild | 39 ------------------------------ 2 files changed, 39 insertions(+), 39 deletions(-) create mode 100644 app-text/diff-pdf/diff-pdf-0.4.1-r1.ebuild delete mode 100644 app-text/diff-pdf/diff-pdf-0.4.1.ebuild (limited to 'app-text/diff-pdf') diff --git a/app-text/diff-pdf/diff-pdf-0.4.1-r1.ebuild b/app-text/diff-pdf/diff-pdf-0.4.1-r1.ebuild new file mode 100644 index 000000000000..f5b10815eafe --- /dev/null +++ b/app-text/diff-pdf/diff-pdf-0.4.1-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# No EAPI=7 support in wxwidgets.eclass. +EAPI=7 + +inherit wxwidgets + +DESCRIPTION="A simple tool for visually comparing two PDF files" +HOMEPAGE="http://vslavik.github.io/diff-pdf/ https://github.com/vslavik/diff-pdf/" +SRC_URI="https://github.com/vslavik/${PN}/releases/download/v${PV}/${P}.tar.gz" + +# The COPYING.icons file states that two icons were taken from +# version 2.16.5 of GTK+, which is licensed LGPL-2+. +LICENSE="GPL-2+ LGPL-2+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +# The build system checks for "poppler-glib", which is provided only +# when app-text/poppler is built with USE=cairo. Moreover the glib ABI +# of poppler is relatively stable, and I can only assume that diff-pdf +# uses that rather than the low-level libpoppler.so API. Since the +# subslot on app-text/poppler is ONLY for the low-level API, we +# therefore don't need a subslot dependency on app-text/poppler. +# +# Since diff-pdf.cpp includes glib.h directly, I've included +# dev-libs/glib as an explicit dependency. Ditto for x11-libs/cairo. +DEPEND="app-text/poppler[cairo] + dev-libs/glib + x11-libs/cairo + x11-libs/wxGTK:3.0-gtk3[X]" +RDEPEND="${DEPEND}" + +src_configure() { + WX_GTK_VER="3.0-gtk3" + setup-wxwidgets + default +} diff --git a/app-text/diff-pdf/diff-pdf-0.4.1.ebuild b/app-text/diff-pdf/diff-pdf-0.4.1.ebuild deleted file mode 100644 index 5b18231db4e7..000000000000 --- a/app-text/diff-pdf/diff-pdf-0.4.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# No EAPI=7 support in wxwidgets.eclass. -EAPI=6 - -inherit wxwidgets - -DESCRIPTION="A simple tool for visually comparing two PDF files" -HOMEPAGE="http://vslavik.github.io/diff-pdf/ https://github.com/vslavik/diff-pdf/" -SRC_URI="https://github.com/vslavik/${PN}/releases/download/v${PV}/${P}.tar.gz" - -# The COPYING.icons file states that two icons were taken from -# version 2.16.5 of GTK+, which is licensed LGPL-2+. -LICENSE="GPL-2+ LGPL-2+" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -# The build system checks for "poppler-glib", which is provided only -# when app-text/poppler is built with USE=cairo. Moreover the glib ABI -# of poppler is relatively stable, and I can only assume that diff-pdf -# uses that rather than the low-level libpoppler.so API. Since the -# subslot on app-text/poppler is ONLY for the low-level API, we -# therefore don't need a subslot dependency on app-text/poppler. -# -# Since diff-pdf.cpp includes glib.h directly, I've included -# dev-libs/glib as an explicit dependency. Ditto for x11-libs/cairo. -DEPEND="app-text/poppler[cairo] - dev-libs/glib - x11-libs/cairo - x11-libs/wxGTK:3.0[X]" -RDEPEND="${DEPEND}" - -src_configure() { - WX_GTK_VER="3.0" - setup-wxwidgets - default -} -- cgit v1.2.3-65-gdbad