diff options
author | Sebastian Pipping <sping@gentoo.org> | 2020-01-27 23:37:33 +0100 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2020-01-27 23:37:50 +0100 |
commit | 1904268464d4b62467b7ab754164b2f7784e031f (patch) | |
tree | 5bb63f2a23972ac78bbf04d02090e310fc60060b /app-cdr/isomaster | |
parent | sci-chemistry/gromacs: Drop old version (diff) | |
download | gentoo-1904268464d4b62467b7ab754164b2f7784e031f.tar.gz gentoo-1904268464d4b62467b7ab754164b2f7784e031f.tar.bz2 gentoo-1904268464d4b62467b7ab754164b2f7784e031f.zip |
app-cdr/isomaster: Fix compilation + EAPI 7
Closes: https://bugs.gentoo.org/706662
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Diffstat (limited to 'app-cdr/isomaster')
-rw-r--r-- | app-cdr/isomaster/files/isomaster-1.3.14-include-path.patch | 25 | ||||
-rw-r--r-- | app-cdr/isomaster/isomaster-1.3.14.ebuild | 8 |
2 files changed, 31 insertions, 2 deletions
diff --git a/app-cdr/isomaster/files/isomaster-1.3.14-include-path.patch b/app-cdr/isomaster/files/isomaster-1.3.14-include-path.patch new file mode 100644 index 000000000000..520a355e595f --- /dev/null +++ b/app-cdr/isomaster/files/isomaster-1.3.14-include-path.patch @@ -0,0 +1,25 @@ +From 50113aa660d2a867f3f8bfd67e1ba601c8b5294a Mon Sep 17 00:00:00 2001 +From: Sebastian Pipping <sebastian@pipping.org> +Date: Mon, 27 Jan 2020 23:33:49 +0100 +Subject: [PATCH] Add missing (Gentoo specific) include path for iniparser 4 + +--- + Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Makefile b/Makefile +index 8f4f23b..124a035 100644 +--- a/Makefile ++++ b/Makefile +@@ -65,7 +65,7 @@ CPPFLAGS += -DICONPATH=\"$(ICONPATH)\" -DLOCALEDIR=\"$(LOCALEDIR)\" -DDEFAULT_E + CPPFLAGS += -D_FILE_OFFSET_BITS=64 + + ifdef USE_SYSTEM_INIPARSER +-CPPFLAGS += -DUSE_SYSTEM_INIPARSER=$(USE_SYSTEM_INIPARSER) ++CPPFLAGS += -DUSE_SYSTEM_INIPARSER=$(USE_SYSTEM_INIPARSER) -I/usr/include/iniparser4 + endif + + OBJECTS = isomaster.o window.o browser.o fsbrowser.o isobrowser.o error.o about.o settings.o boot.o editfile.o +-- +2.24.1 + diff --git a/app-cdr/isomaster/isomaster-1.3.14.ebuild b/app-cdr/isomaster/isomaster-1.3.14.ebuild index c30620f0aa1b..cbe941cb2b92 100644 --- a/app-cdr/isomaster/isomaster-1.3.14.ebuild +++ b/app-cdr/isomaster/isomaster-1.3.14.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit toolchain-funcs xdg-utils @@ -20,6 +20,10 @@ DEPEND="${RDEPEND} virtual/pkgconfig nls? ( >=sys-devel/gettext-0.19.1 )" # bug 512448 +PATCHES=( + "${FILESDIR}"/${P}-include-path.patch +) + pkg_setup() { myisoconf=( DEFAULT_EDITOR=leafpad |