blob: 889527a38c618fe4e40d22febf3ffe30b85d66b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/ypserv/ypserv-2.5.ebuild,v 1.2 2002/12/09 04:33:19 manson Exp $
IUSE=""
S=${WORKDIR}/${P}
DESCRIPTION="NIS SERVER"
SRC_URI="ftp://ftp.de.kernel.org/pub/linux/utils/net/NIS/${P}.tar.gz
ftp://ftp.uk.kernel.org/pub/linux/utils/net/NIS/${P}.tar.gz
ftp://ftp.kernel.org/pub/linux/utils/net/NIS/${P}.tar.gz"
HOMEPAGE="http://www.linux-nis.org/nis/"
SLOT="1"
LICENSE="GPL-2"
KEYWORDS="x86 sparc "
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/locale etc/netgroup etc/netmasks etc/timezone
insinto /var/yp ; doins etc/securenets
exeinto /etc/init.d
newexe ${FILESDIR}/ypserv.rc6 ypserv
}
pkg_postinst() {
einfo "ypserv does not longer have support for tcp_wrappers. You need to"
einfo "use /var/yp/securenets to allow/deny queries from other hosts."
}
|