commit:     21b2dac90d38b07b6f1aad1bd4aec2681c4e6e8c
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Fri Nov 27 17:36:46 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Nov 27 17:36:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21b2dac9

app-text/hnb: port to EAPI 7

Closes: https://bugs.gentoo.org/707720
Package-Manager: Portage-3.0.9, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-text/hnb/files/hnb-1.9.18-fno-common.patch | 27 ++++++++++++++++++++++++++
 app-text/hnb/hnb-1.9.18-r1.ebuild              | 27 ++++++++++++++------------
 2 files changed, 42 insertions(+), 12 deletions(-)

diff --git a/app-text/hnb/files/hnb-1.9.18-fno-common.patch 
b/app-text/hnb/files/hnb-1.9.18-fno-common.patch
new file mode 100644
index 00000000000..89a4321c414
--- /dev/null
+++ b/app-text/hnb/files/hnb-1.9.18-fno-common.patch
@@ -0,0 +1,27 @@
+--- a/src/ui.h
++++ b/src/ui.h
+@@ -38,6 +38,9 @@ extern int hnb_edit_posup;
+ extern int hnb_edit_posdown;
+ 
+ extern int ui_inited;
++extern int nodes_above;
++extern int active_line;
++extern int nodes_below;
+ 
+ void ui_getstr (char *prompt, char *datastorage);
+ 
+--- a/src/ui_draw.c
++++ b/src/ui_draw.c
+@@ -39,9 +39,9 @@
+ 
+ #define KEEPLINES 5
+ 
+-int nodes_above;
+-int active_line;
+-int nodes_below;
++extern int nodes_above;
++extern int active_line;
++extern int nodes_below;
+ 
+ static Node *up (Node *sel, Node *node)
+ {

diff --git a/app-text/hnb/hnb-1.9.18-r1.ebuild 
b/app-text/hnb/hnb-1.9.18-r1.ebuild
index a38796bc73b..2c262725c22 100644
--- a/app-text/hnb/hnb-1.9.18-r1.ebuild
+++ b/app-text/hnb/hnb-1.9.18-r1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit eutils toolchain-funcs
+EAPI=7
+
+inherit toolchain-funcs
 
 DESCRIPTION="A program to organize many kinds of data in one place"
 HOMEPAGE="http://hnb.sourceforge.net/";
@@ -13,20 +14,22 @@ LICENSE="GPL-2"
 KEYWORDS="amd64 ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 
 RDEPEND="sys-libs/ncurses"
-DEPEND="
-       ${RDEPEND}
-       virtual/pkgconfig
-"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+       "${FILESDIR}"/${P}-flags.patch
+       "${FILESDIR}"/${P}-include.patch
+       "${FILESDIR}"/${P}-printf.patch
+       "${FILESDIR}"/${P}-fno-common.patch
+)
 
 src_prepare() {
+       default
+
        rm -r ${P} || die
        rm src/cli_history.o || die
 
-       epatch \
-               "${FILESDIR}"/${P}-flags.patch \
-               "${FILESDIR}"/${P}-include.patch \
-               "${FILESDIR}"/${P}-printf.patch
-
        tc-export AR CC PKG_CONFIG
 
        # bug #532552

Reply via email to