blob: fef8cb146e1d2339fdf8416c4f9ad0576bd82fe3 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Utility for managing chroots for non-root users"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="mirror://gentoo/${P/-/_}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="!dev-util/schroot[dchroot]"
BDEPEND="sys-apps/help2man"
PATCHES=(
"${FILESDIR}"/${P}-make.patch
)
src_prepare() {
default
eautoreconf #874318
}
|