summaryrefslogtreecommitdiff
blob: 86f675e9580632b3f17ae1b893784fc9d6493f28 (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/usermin/usermin-1.070.ebuild,v 1.3 2004/04/23 00:25:51 eradicator 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="~x86 ~sparc ~alpha ~ppc"
IUSE="ssl"

DEPEND="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}

	# Fix setup.sh for gentoo
	epatch ${FILESDIR}/${P}-gentoo.patch

	# 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
}

src_install() {
	dodir /usr/libexec/usermin
	mv * ${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
}

pkg_postinst() {
	einfo "Configure usermin by running \"/usr/libexec/usermin/setup.sh\"."
	einfo "Point your web browser to http://localhost:20000 to use usermin."
}

pkg_prerm() {
	test -f /var/lib/init.d/started/usermin && /etc/init.d/usermin stop
}