Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/vis/
Date: Fri, 09 Feb 2018 16:38:02
Message-Id: 1518194174.53bcd4d3559a77826580f9a0efac91997185263c.mgorny@gentoo
1 commit: 53bcd4d3559a77826580f9a0efac91997185263c
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Sat Jan 27 15:37:42 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 9 16:36:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53bcd4d3
7
8 app-editors/vis: use ./configure instead of econf
9
10 app-editors/vis/vis-0.4.ebuild | 5 +++--
11 app-editors/vis/vis-9999.ebuild | 5 +++--
12 2 files changed, 6 insertions(+), 4 deletions(-)
13
14 diff --git a/app-editors/vis/vis-0.4.ebuild b/app-editors/vis/vis-0.4.ebuild
15 index b8f0705856c..a9a7da4eedf 100644
16 --- a/app-editors/vis/vis-0.4.ebuild
17 +++ b/app-editors/vis/vis-0.4.ebuild
18 @@ -35,10 +35,11 @@ src_prepare() {
19 }
20
21 src_configure() {
22 - econf \
23 + ./configure \
24 + --prefix="${EROOT}usr" \
25 $(use_enable ncurses curses) \
26 $(use_enable selinux) \
27 - $(use_enable tre)
28 + $(use_enable tre) || die
29 }
30
31 update_symlinks() {
32
33 diff --git a/app-editors/vis/vis-9999.ebuild b/app-editors/vis/vis-9999.ebuild
34 index 7c59933793a..126135a1bb2 100644
35 --- a/app-editors/vis/vis-9999.ebuild
36 +++ b/app-editors/vis/vis-9999.ebuild
37 @@ -29,10 +29,11 @@ src_prepare() {
38 }
39
40 src_configure() {
41 - econf \
42 + ./configure \
43 + --prefix="${EROOT}usr" \
44 $(use_enable ncurses curses) \
45 $(use_enable selinux) \
46 - $(use_enable tre)
47 + $(use_enable tre) || die
48 }
49
50 update_symlinks() {