summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-05-13 17:39:03 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-05-13 17:39:03 +0000
commite8543fffde530203642d198a3692f4bbea3b07e5 (patch)
treead4c7959921f44775967ed23d3f071fde1e5591e /app-admin
parentnew version of bbconf (diff)
downloadhistorical-e8543fffde530203642d198a3692f4bbea3b07e5.tar.gz
historical-e8543fffde530203642d198a3692f4bbea3b07e5.tar.bz2
historical-e8543fffde530203642d198a3692f4bbea3b07e5.zip
cleanup
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/webmin/files/digest-webmin-1.0701
-rw-r--r--app-admin/webmin/webmin-1.070.ebuild72
2 files changed, 0 insertions, 73 deletions
diff --git a/app-admin/webmin/files/digest-webmin-1.070 b/app-admin/webmin/files/digest-webmin-1.070
deleted file mode 100644
index 5037fde062c0..000000000000
--- a/app-admin/webmin/files/digest-webmin-1.070
+++ /dev/null
@@ -1 +0,0 @@
-MD5 135851a774691617a74a04243e9f1856 webmin-1.070.tar.gz 6108315
diff --git a/app-admin/webmin/webmin-1.070.ebuild b/app-admin/webmin/webmin-1.070.ebuild
deleted file mode 100644
index c09feb1f2a56..000000000000
--- a/app-admin/webmin/webmin-1.070.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webmin/webmin-1.070.ebuild,v 1.5 2003/03/28 10:21:20 pvdabeel Exp $
-
-IUSE="ssl"
-
-DESCRIPTION="Webmin, a web-based system administration interface"
-SRC_URI="mirror://sourceforge/webadmin/${P}.tar.gz"
-HOMEPAGE="http://www.webmin.com/"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="x86 ppc sparc"
-
-DEPEND="dev-lang/perl
- ssl? ( dev-perl/Net-SSLeay )"
-
-RDEPEND=""
-
-src_install() {
- rm -f mount/freebsd-mounts*
- rm -f mount/openbsd-mounts*
- rm -f mount/macos-mounts*
- (find . -name '*.cgi' ; find . -name '*.pl') | perl perlpath.pl /usr/bin/perl -
- dodir /usr/libexec/webmin
- dodir /etc/init.d
- dodir /var
- dodir /etc/pam.d
- cp -rp * ${D}/usr/libexec/webmin
- mv ${D}/usr/libexec/webmin/openslp/config \
- ${D}/usr/libexec/webmin/openslp/config-gentoo-linux
-
- exeinto /etc/init.d
- newexe webmin-gentoo-init webmin
-
- insinto /etc/pam.d/
- newins webmin-pam webmin
- echo gentoo > ${D}/usr/libexec/webmin/install-type
-
- exeinto /etc/webmin
- doexe ${FILESDIR}/uninstall.sh
-
-}
-
-pkg_postinst() {
- /etc/init.d/webmin stop >/dev/null 2>&1
- stopstatus=$?
- cd /usr/libexec/webmin
- config_dir=/etc/webmin
- var_dir=/var/webmin
- perl=/usr/bin/perl
- autoos=1
- port=10000
- login=root
- crypt=`grep "^root:" /etc/shadow | cut -f 2 -d :`
- host=`hostname`
- 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/webmin/maketemp.pl
- ./setup.sh >/tmp/.webmin/webmin-setup.out 2>&1
-
- if [ "$stopstatus" = "0" ]; then
- # Start if it was running before
- /etc/init.d/webmin start
- fi
-}