diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-07-21 19:07:25 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-07-21 19:07:25 +0000 |
commit | 40f7aa9386f26bb76b7d82e4073880687b2cc504 (patch) | |
tree | 8345246bdfadfa8f2955878b0345a39a50497786 /app-admin/webmin | |
parent | distcc-config for v2.8 (diff) | |
download | gentoo-2-40f7aa9386f26bb76b7d82e4073880687b2cc504.tar.gz gentoo-2-40f7aa9386f26bb76b7d82e4073880687b2cc504.tar.bz2 gentoo-2-40f7aa9386f26bb76b7d82e4073880687b2cc504.zip |
cleanup
Diffstat (limited to 'app-admin/webmin')
-rw-r--r-- | app-admin/webmin/Manifest | 2 | ||||
-rw-r--r-- | app-admin/webmin/files/digest-webmin-1.090 | 1 | ||||
-rw-r--r-- | app-admin/webmin/webmin-1.090.ebuild | 72 |
3 files changed, 0 insertions, 75 deletions
diff --git a/app-admin/webmin/Manifest b/app-admin/webmin/Manifest index 0c2ab1a2063b..c78f08a41a7f 100644 --- a/app-admin/webmin/Manifest +++ b/app-admin/webmin/Manifest @@ -1,8 +1,6 @@ MD5 8da272547d823ad06bd4d4e28d2f454b ChangeLog 3814 MD5 35394441f81a8321971fa6056d0737ea webmin-1.080.ebuild 1763 -MD5 65157783850f3cebc0681782ac618923 webmin-1.090.ebuild 1765 MD5 d6c2044e40ed6ff8fdd8bdb88e9608c5 webmin-1.100.ebuild 1764 MD5 c2e70e10958f50cd84c377b5963a8ced files/digest-webmin-1.080 65 -MD5 546b4c597e554fcbfa4b61686affcdcc files/digest-webmin-1.090 65 MD5 bc8eb1c9de103599fc00b140b0ed1f9f files/uninstall.sh 260 MD5 bacc4ea9d2d0e8fb5a98b9a5e15f338a files/digest-webmin-1.100 65 diff --git a/app-admin/webmin/files/digest-webmin-1.090 b/app-admin/webmin/files/digest-webmin-1.090 deleted file mode 100644 index b87dc7427f85..000000000000 --- a/app-admin/webmin/files/digest-webmin-1.090 +++ /dev/null @@ -1 +0,0 @@ -MD5 ad9cc428a3e5154aa43c0b19bf722f51 webmin-1.090.tar.gz 6392798 diff --git a/app-admin/webmin/webmin-1.090.ebuild b/app-admin/webmin/webmin-1.090.ebuild deleted file mode 100644 index 92c1a23c8cd3..000000000000 --- a/app-admin/webmin/webmin-1.090.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.090.ebuild,v 1.2 2003/05/25 16:22:59 mholzer 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 -} |