blob: 4894c514462b8857764a0b6a4ac7af1d54f71cf5 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/usermin/usermin-1.090.ebuild,v 1.5 2004/10/09 19:00:26 tgall Exp $
inherit eutils
DESCRIPTION="a web-based user administration interface"
HOMEPAGE="http://www.webmin.com/index6.html"
SRC_URI="mirror://sourceforge/webadmin/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 ppc ppc64 sparc x86 hppa"
IUSE="ssl"
RDEPEND="dev-lang/perl
sys-apps/lsof
>=sys-apps/sed-4
dev-perl/Authen-PAM
ssl? ( dev-perl/Net-SSLeay )"
src_unpack() {
unpack ${A}
cd ${S}
# Point to the correct mysql location
sed -i "s:/usr/local/mysql:/usr:g" mysql/config
# Bug #46273... missing config for gentoo
cp quota/generic-linux-lib.pl quota/gentoo-linux-lib.p
epatch ${FILESDIR}/${PN}-1.080-safestop.patch
}
src_install() {
dodir /usr/libexec/usermin
cp -a * ${D}/usr/libexec/usermin
exeinto /etc/init.d
newexe ${FILESDIR}/init.d.usermin usermin
insinto /etc/pam.d
newins ${FILESDIR}/${PN}.pam ${PN}
dosym ../usr/libexec/usermin /etc/usermin
# Change /usr/local/bin/perl references
find ${D} -type f | xargs sed -i 's:^#!.*/usr/local/bin/perl:#!/usr/bin/perl:'
}
pkg_postinst() {
/etc/init.d/usermin stop >& /dev/null
stopstatus=$?
cd /usr/libexec/usermin
config_dir=/etc/usermin
var_dir=/var/log/usermin
perl=/usr/bin/perl
autoos=1
port=20000
login=root
crypt=`grep "^root:" /etc/shadow | cut -f 2 -d :`
host=`hostname`
use ssl && ssl=1 || ssl=0
atboot=0
nostart=1
nochown=1
autothird=1
nouninstall=1
noperlpath=1
export config_dir var_dir perl autoos port login crypt host ssl nochown autothird nouninstall nostart noperlpath
perl /usr/libexec/usermin/maketemp.pl
./setup.sh > /tmp/.webmin/usermin-setup.out 2>&1
if [ "$stopstatus" = "0" ]; then
# Start if it was running before
/etc/init.d/usermin start
fi
sed -i 's:^pidfile=.*$:pidfile=/var/run/usermin.pid:' /etc/usermin/miniserv.conf
einfo "Add usermin to your boot-time services with 'rc-update add usermin'."
einfo "Point your web browser to http://localhost:20000 to use usermin."
}
pkg_prerm() {
/etc/init.d/usermin stop >& /dev/null
}
|