summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-nds/ypserv/ypserv-2.8.ebuild')
-rw-r--r--net-nds/ypserv/ypserv-2.8.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/net-nds/ypserv/ypserv-2.8.ebuild b/net-nds/ypserv/ypserv-2.8.ebuild
deleted file mode 100644
index 53714aa7e99b..000000000000
--- a/net-nds/ypserv/ypserv-2.8.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-nds/ypserv/ypserv-2.8.ebuild,v 1.15 2004/09/16 15:33:57 eradicator Exp $
-
-IUSE=""
-
-DESCRIPTION="Network Information Service server"
-SRC_URI="mirror://kernel/linux/utils/net/NIS/${P}.tar.gz"
-HOMEPAGE="http://www.linux-nis.org/nis/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 sparc ~ppc ppc64"
-DEPEND=">=sys-libs/gdbm-1.8.0"
-
-src_compile() {
- econf --enable-yppasswd || die
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install
- dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
-
- insinto /etc
- doins etc/ypserv.conf etc/netgroup etc/netmasks
-
- insinto /var/yp
- newins etc/securenets securenets.default
-
- insinto /etc/conf.d
- newins ${FILESDIR}/ypserv.confd ypserv
-
- exeinto /etc/init.d
- newexe ${FILESDIR}/ypserv ypserv
- newexe ${FILESDIR}/rpc.yppasswdd rpc.yppasswdd
- newexe ${FILESDIR}/rpc.ypxfrd rpc.ypxfrd
-
- # Save the old config into the new package as CONFIG_PROTECT
- # doesn't work for this package.
- if [ -f ${ROOT}/var/yp/Makefile ]; then
- mv ${D}/var/yp/Makefile ${D}/var/yp/Makefile.dist
- cp ${ROOT}/var/yp/Makefile ${D}/var/yp/Makefile
- einfo "As you have a previous /var/yp/Makefile, I have added"
- einfo "this file into the new package and installed the new"
- einfo "file as /var/yp/Makefile.dist"
- fi
-}
-
-pkg_postinst() {
- einfo "To complete setup, you will need to edit /var/yp/securenets,"
- einfo "/etc/conf.d/ypserv, /etc/ypserv.conf, and possibly"
- einfo "/var/yp/Makefile."
-}