blob: da410e6062f85b6ede76a560978b92f00e15d5cf (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Localshell allows per-user/group local control of shell execution"
HOMEPAGE="http://git.orbis-terrarum.net/?p=infrastructure/localshellc.git;a=summary"
SRC_URI="http://git.orbis-terrarum.net/?p=infrastructure/localshellc.git;a=summary/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc64 x86"
src_configure() {
# this is a shell, it needs to be in /bin
econf --bindir=/bin --sysconfdir=/etc
}
src_install() {
emake install DESTDIR="${D}"
mv "${ED}"/usr/share/doc/${P}/ "${ED}"/usr/share/doc/${PF} || die
rm -f "${D}"/usr/share/doc/${PF}/{COPYING,INSTALL} || die
}
pkg_postinst() {
elog "Remember to add /bin/localshell to /etc/shells and create"
elog "/etc/localshell.conf based on the included configuration examples"
}
|