Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sed/
Date: Thu, 06 Jan 2022 09:07:41
Message-Id: 1641460031.4b5f83db898807ef96b5cc5dfefce47578ea9602.soap@gentoo
1 commit: 4b5f83db898807ef96b5cc5dfefce47578ea9602
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 6 09:07:11 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 6 09:07:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b5f83db
7
8 sys-apps/sed: remove userland_GNU
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 sys-apps/sed/sed-4.8.ebuild | 13 ++++---------
13 1 file changed, 4 insertions(+), 9 deletions(-)
14
15 diff --git a/sys-apps/sed/sed-4.8.ebuild b/sys-apps/sed/sed-4.8.ebuild
16 index a8aaee8972f8..69f4960ab94f 100644
17 --- a/sys-apps/sed/sed-4.8.ebuild
18 +++ b/sys-apps/sed/sed-4.8.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=7
25 @@ -31,15 +31,10 @@ DEPEND="${RDEPEND}
26 BDEPEND="nls? ( sys-devel/gettext )"
27
28 src_configure() {
29 - local myconf=()
30 - if use userland_GNU; then
31 - myconf+=( --exec-prefix="${EPREFIX}" )
32 - else
33 - myconf+=( --program-prefix=g )
34 - fi
35 -
36 use static && append-ldflags -static
37 - myconf+=(
38 +
39 + local myconf=(
40 + --exec-prefix="${EPREFIX}"
41 $(use_enable acl)
42 $(use_enable nls)
43 $(use_with selinux)