blob: 3a60680463f6c98b7c7a43c1cdf37261f063c2ab (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
EAPI=2
inherit eutils
DESCRIPTION="gentoo system management"
HOMEPAGE=""
SRC_URI="http://www.aperiplus.co.uk/downloads/src/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
#DEPEND=""
RDEPEND="net-misc/rsync
sys-boot/grub
app-misc/bashfun
net-misc/htpdate"
src_install() {
dodir '/opt/gentool' || die "out of cheese error 1"
insinto '/opt/gentool' || die "out of cheese error 2"
cp -ar ${FILESDIR}'/'${S}'/opt/gentool/'* ${D}'/opt/gentool/' || die "out of cheese error 3"
dodir '/etc/gentool' || die "out of cheese error 4"
insinto '/etc/gentool' || die "out of cheese error 5"
doins ${FILESDIR}'/'${S}'/etc/gentool/config.sh' || die "out of cheese error 6"
doenvd ${FILESDIR}'/'${S}'/etc/env.d/99gentool-env' || die "out of cheese error 7"
}
pkg_postinst() {
if [ ! -f /opt/bin/gentool ]
then
cd /opt/bin
ln -s /opt/gentool/bin/gentool.sh gentool
fi
path_minus_opt_bin=`echo $PATH | sed 's~/opt/bin:~~g'`
if [ $PATH = $path_minus_opt_bin ]
then
ewarn
ewarn '/opt/bin is not in your $PATH!'
ewarn '(gentool is installed at /opt/bin/gentool)'
ewarn
fi
ewarn
ewarn 'you may want to edit /etc/gentool/config.sh now - just follow instructions in the file'
ewarn
}
|