diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-10-31 17:14:57 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-10-31 17:14:57 +0000 |
commit | 4de2a2000f9c5b43b6308634174b4d4e689c8acc (patch) | |
tree | 193a32de61f4ac1d35d98128c69f615667671649 /app-admin/webmin | |
parent | Added missing diff (diff) | |
download | gentoo-2-4de2a2000f9c5b43b6308634174b4d4e689c8acc.tar.gz gentoo-2-4de2a2000f9c5b43b6308634174b4d4e689c8acc.tar.bz2 gentoo-2-4de2a2000f9c5b43b6308634174b4d4e689c8acc.zip |
openslp module's config file fixed
Diffstat (limited to 'app-admin/webmin')
-rw-r--r-- | app-admin/webmin/ChangeLog | 11 | ||||
-rw-r--r-- | app-admin/webmin/files/digest-webmin-1.000 | 1 | ||||
-rw-r--r-- | app-admin/webmin/files/digest-webmin-1.020-r1 | 1 | ||||
-rw-r--r-- | app-admin/webmin/webmin-1.020-r1.ebuild (renamed from app-admin/webmin/webmin-1.000.ebuild) | 22 |
4 files changed, 25 insertions, 10 deletions
diff --git a/app-admin/webmin/ChangeLog b/app-admin/webmin/ChangeLog index 42e262b81d71..55aa0bc9e578 100644 --- a/app-admin/webmin/ChangeLog +++ b/app-admin/webmin/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for app-admin/webmin # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/webmin/ChangeLog,v 1.4 2002/10/13 01:55:24 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/webmin/ChangeLog,v 1.5 2002/10/31 17:14:57 seemant Exp $ + +*webmin-1.020 (31 Oct 2002) + + 31 Oct 2002; Seemant Kulleen <seemant@gentoo.org> webmin-1.020-r1.ebuild + files/digest-webmin-1.020-r1 : + + Ebuild cleanup and OpenSLP module's config file renamed to + config-gentoo-linux so that the OpenSLP module works. Thanks to: + pauls@globaliqx.com (Paul Slinski) in bug #9656 for the fix. *webmin-1.020 (12 Oct 2002) diff --git a/app-admin/webmin/files/digest-webmin-1.000 b/app-admin/webmin/files/digest-webmin-1.000 deleted file mode 100644 index 57e0a3bb1e06..000000000000 --- a/app-admin/webmin/files/digest-webmin-1.000 +++ /dev/null @@ -1 +0,0 @@ -MD5 f9c22ab47a4a5fb2d96d1d79fe8207a2 webmin-1.000.tar.gz 5643949 diff --git a/app-admin/webmin/files/digest-webmin-1.020-r1 b/app-admin/webmin/files/digest-webmin-1.020-r1 new file mode 100644 index 000000000000..96d4c685faa1 --- /dev/null +++ b/app-admin/webmin/files/digest-webmin-1.020-r1 @@ -0,0 +1 @@ +MD5 ca559d49ad71abf721564df8436de2cf webmin-1.020.tar.gz 5686280 diff --git a/app-admin/webmin/webmin-1.000.ebuild b/app-admin/webmin/webmin-1.020-r1.ebuild index 5dac509b21c3..a277c6f464ba 100644 --- a/app-admin/webmin/webmin-1.000.ebuild +++ b/app-admin/webmin/webmin-1.020-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/webmin/webmin-1.000.ebuild,v 1.5 2002/10/05 05:39:05 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/webmin/webmin-1.020-r1.ebuild,v 1.1 2002/10/31 17:14:57 seemant Exp $ IUSE="ssl" @@ -10,7 +10,7 @@ HOMEPAGE="http://www.webmin.com/" SLOT="0" LICENSE="BSD" -KEYWORDS="x86 ppc sparc sparc64 alpha" +KEYWORDS="~x86" DEPEND="sys-devel/perl ssl? ( dev-perl/Net-SSLeay )" @@ -22,13 +22,19 @@ src_install() { rm -f mount/openbsd-mounts* rm -f mount/macos-mounts* (find . -name '*.cgi' ; find . -name '*.pl') | perl perlpath.pl /usr/bin/perl - - mkdir -p ${D}/usr/libexec/webmin - mkdir -p ${D}/etc/init.d - mkdir -p ${D}/var - mkdir -p ${D}/etc/pam.d + dodir /usr/libexec/webmin + dodir /etc/init.d + dodir /var + dodir /etc/pam.d cp -rp * ${D}/usr/libexec/webmin - cp webmin-gentoo-init ${D}/etc/init.d/webmin - cp webmin-pam ${D}/etc/pam.d/webmin + mv ${D}/usr/libexec/webmin/openslp/config \ + ${D}/usr/libexec/webmin/openslp/config-gentoo-linux + + insinto /etc/init.d + newins webmin-gentoo-init webmin + + insinto /etc/pam.d/ + newins webmin-pam webmin echo gentoo > ${D}/usr/libexec/webmin/install-type exeinto /etc/webmin |