blob: 7bd9b301793197f35b4f9c974c06abadf76fb1d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Restricted User Shell"
HOMEPAGE="https://puszcza.gnu.org.ua/projects/rush/"
SRC_URI="https://download.gnu.org.ua/pub/release/${PN}/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls"
BDEPEND="nls? ( sys-devel/gettext )"
src_prepare() {
default
# These tests see SANDBOX_* variables and fail as a result, bug #689554
for file in tests/{eval,clr,unset,keep,set}env.at tests/legacy/env.at ; do
echo > ${file} || die
done
}
src_configure() {
local myeconfargs=(
$(use_enable nls)
)
econf "${myeconfargs[@]}"
}
|