diff options
Diffstat (limited to 'net-fs/nfs-utils/nfs-utils-0.2.1-r1.ebuild')
-rw-r--r-- | net-fs/nfs-utils/nfs-utils-0.2.1-r1.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/net-fs/nfs-utils/nfs-utils-0.2.1-r1.ebuild b/net-fs/nfs-utils/nfs-utils-0.2.1-r1.ebuild deleted file mode 100644 index 3a496511a8ed..000000000000 --- a/net-fs/nfs-utils/nfs-utils-0.2.1-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-0.2.1-r1.ebuild,v 1.1 2000/12/11 18:05:42 achim Exp $ - -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="Kernel NFS-Server" -SRC_URI="ftp://ftp.linuxnfs.sourceforge.org/pub/nfs/"${A} -HOMEPAGE="http://nfs.sourceforge.net" - -DEPEND=">=sys-apps/bash-2.04 - >=sys-libs/glibc-2.1.3" - -src_compile() { - try ./configure --mandir=${D}/usr/man --with-statedir=/var/state/nfs \ - --prefix=${D} --exec-prefix=${D} - try make -} - -src_install() { - cd ${S} - try make install STATEDIR=${D}/var/state/nfs - dodir /etc/rc.d/init.d - cp ${O}/files/nfs ${D}/etc/rc.d/init.d - cp ${O}/files/exports ${D}/etc - dodoc ChangeLog COPYING README - docinto linux-nfs - dodoc linux-nfs/* -} -pkg_config() { - - . ${ROOT}/etc/rc.d/config/functions - . ${ROOT}/var/db/pkg/install.config - - echo "Generating symlinks..." - ${ROOT}/usr/sbin/rc-update add nfs - if [ -n "${nfsserver_home}" ] - then - echo "Export Homedirs..." - cp ${ROOT}/etc/exports ${ROOT}/etc/exports.orig - sed -e "s:^#nfsserver_home:${nfsserver_home}:" \ - -e "s/eth0_net/${eth0_net}/" \ - -e "s/eth0_mask/${eth0_mask}/" \ - ${ROOT}/etc/exports.orig > ${ROOT}/etc/exports - fi -} - - - - |