summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-07-17 09:52:23 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-07-17 09:52:23 +0000
commit407ab70c77c3db060e282a1aeb84010670bcf199 (patch)
tree80804c96bab24c3023f62c3746fc1d4a1098ba52 /net-fs/autofs
parentdigest (diff)
downloadhistorical-407ab70c77c3db060e282a1aeb84010670bcf199.tar.gz
historical-407ab70c77c3db060e282a1aeb84010670bcf199.tar.bz2
historical-407ab70c77c3db060e282a1aeb84010670bcf199.zip
repoman'd
Diffstat (limited to 'net-fs/autofs')
-rw-r--r--net-fs/autofs/autofs-3.1.7-r1.ebuild54
-rw-r--r--net-fs/autofs/autofs-3.1.7-r2.ebuild43
-rw-r--r--net-fs/autofs/autofs-3.1.7-r3.ebuild10
-rw-r--r--net-fs/autofs/files/digest-autofs-3.1.7-r11
-rw-r--r--net-fs/autofs/files/digest-autofs-3.1.7-r21
5 files changed, 7 insertions, 102 deletions
diff --git a/net-fs/autofs/autofs-3.1.7-r1.ebuild b/net-fs/autofs/autofs-3.1.7-r1.ebuild
deleted file mode 100644
index 728eb8316da5..000000000000
--- a/net-fs/autofs/autofs-3.1.7-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-3.1.7-r1.ebuild,v 1.6 2002/07/11 06:30:46 drobbins Exp $
-
-A=${P}.tar.bz2
-S=${WORKDIR}/${P}
-DESCRIPTION="Automounter"
-SRC_URI="ftp://ftp.kernel.org/pub/linux/daemons/autofs/${A}
- ftp://ftp.de.kernel.org/pub/linux/daemons/autofs/${A}
- ftp://ftp.uk.kernel.org/pub/linux/daemons/autofs/${A}"
-LICENSE="GPL-2"
-
-DEPEND="virtual/glibc
- ldap? ( ~net-nds/openldap-1.2 )"
-
-src_unpack() {
- unpack ${A}
- cd ${S}/include
- patch -p0 < ${FILESDIR}/automount.diff
-}
-
-src_compile() {
- local myconf
- if [ -z "`use ldap`" ] ; then
- myconf="--without-openldap"
- fi
- try ./configure --host=${HOST} --prefix=/usr $myconf
- try make
-}
-
-src_install() {
-
- into /usr
- dosbin daemon/automount
- insinto /usr/lib/autofs
- insopts -m 755
- doins modules/*.so
- dodoc COPYING COPYRIGHT NEWS README* TODO
- cd man
- doman auto.master.5 autofs.5 autofs.8 automount.8
- cd ../samples
- dodir /etc/autofs
- cp ${O}/files/auto.master ${D}/etc/autofs
- cp ${O}/files/auto.misc ${D}/etc/autofs
- dodir /etc/rc.d/init.d
- cp ${O}/files/autofs ${D}/etc/rc.d/init.d
-}
-
-pkg_config() {
- . ${ROOT}/etc/rc.d/config/functions
- echo "Activating autofs..."
- ${ROOT}/usr/sbin/rc-update add autofs
-}
-
diff --git a/net-fs/autofs/autofs-3.1.7-r2.ebuild b/net-fs/autofs/autofs-3.1.7-r2.ebuild
deleted file mode 100644
index 2624e7fdcd87..000000000000
--- a/net-fs/autofs/autofs-3.1.7-r2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-3.1.7-r2.ebuild,v 1.4 2002/07/11 06:30:46 drobbins Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Automounter"
-SRC_URI="ftp://ftp.kernel.org/pub/linux/daemons/autofs/${P}.tar.bz2
- ftp://ftp.de.kernel.org/pub/linux/daemons/autofs/${P}.tar.bz2
- ftp://ftp.uk.kernel.org/pub/linux/daemons/autofs/${P}.tar.bz2"
-DEPEND="virtual/glibc ldap? ( ~net-nds/openldap-1.2 )"
-LICENSE="GPL-2"
-
-src_unpack() {
- unpack ${A} ; cd ${S}/include
- patch -p0 < ${FILESDIR}/automount.diff || die
-}
-
-src_compile() {
- local myconf
- use ldap || myconf="--without-openldap"
- ./configure --host=${HOST} --prefix=/usr ${myconf} || die
- emake || die
-}
-
-src_install() {
- into /usr
- dosbin daemon/automount
- insinto /usr/lib/autofs
- insopts -m 755
- doins modules/*.so
-
- dodoc COPYING COPYRIGHT NEWS README* TODO
- cd man
- doman auto.master.5 autofs.5 autofs.8 automount.8
-
- cd ../samples
- dodir /etc/autofs
- cp ${FILESDIR}/auto.master ${D}/etc/autofs
- cp ${FILESDIR}/auto.misc ${D}/etc/autofs
-
- exeinto /etc/init.d ; newexe ${FILESDIR}/autofs.rc6 autofs
- insinto /etc/conf.d ; newins ${FILESDIR}/autofs.confd autofs
-}
diff --git a/net-fs/autofs/autofs-3.1.7-r3.ebuild b/net-fs/autofs/autofs-3.1.7-r3.ebuild
index afe50e010a98..f1a2cb2624d8 100644
--- a/net-fs/autofs/autofs-3.1.7-r3.ebuild
+++ b/net-fs/autofs/autofs-3.1.7-r3.ebuild
@@ -1,15 +1,19 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-3.1.7-r3.ebuild,v 1.3 2002/07/11 06:30:46 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-3.1.7-r3.ebuild,v 1.4 2002/07/17 09:52:23 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Kernel based automounter"
HOMEPAGE="http://www.linux-consulting.com/Amd_AutoFS/autofs.html"
-LICENSE="GPL-2"
SRC_URI="ftp://ftp.kernel.org/pub/linux/daemons/autofs/${P}.tar.bz2
ftp://ftp.de.kernel.org/pub/linux/daemons/autofs/${P}.tar.bz2
ftp://ftp.uk.kernel.org/pub/linux/daemons/autofs/${P}.tar.bz2"
-DEPEND="virtual/glibc ldap? ( ~net-nds/openldap-1.2 )"
+
+DEPEND="ldap? ( ~net-nds/openldap-1.2 )"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
src_unpack() {
unpack ${A} ; cd ${S}/include
diff --git a/net-fs/autofs/files/digest-autofs-3.1.7-r1 b/net-fs/autofs/files/digest-autofs-3.1.7-r1
deleted file mode 100644
index c8410dc43753..000000000000
--- a/net-fs/autofs/files/digest-autofs-3.1.7-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4f602f82442b48ce9c2e0005d59c3408 autofs-3.1.7.tar.bz2 57000
diff --git a/net-fs/autofs/files/digest-autofs-3.1.7-r2 b/net-fs/autofs/files/digest-autofs-3.1.7-r2
deleted file mode 100644
index c8410dc43753..000000000000
--- a/net-fs/autofs/files/digest-autofs-3.1.7-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4f602f82442b48ce9c2e0005d59c3408 autofs-3.1.7.tar.bz2 57000