blob: ec76b66ff96a19ecd356ed61990ed1de61e0ebab (
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
42
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ypbind-1.17.2-r1.ebuild,v 1.3 2004/08/24 23:23:27 eradicator Exp $
IUSE="nls slp"
MY_P=${PN}-mt-${PV}
DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)"
HOMEPAGE="http://www.linux-nis.org/nis/ypbind-mt/index.html"
SRC_URI="ftp://ftp.kernel.org/pub/linux/utils/net/NIS/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ~alpha ~ppc amd64 ~ia64 ~ppc64"
DEPEND="net-nds/yp-tools
slp? ( net-libs/openslp )
net-nds/portmap"
RDEPEND="nls? ( sys-devel/gettext )"
S="${WORKDIR}/${MY_P}"
src_compile() {
econf `use_enable nls` `use_enable slp` || die
emake || die "emake failed"
}
src_install() {
einstall || die
dodoc AUTHORS ChangeLog README THANKS TODO
insinto /etc ; doins etc/yp.conf
insinto /etc/conf.d ; newins ${FILESDIR}/ypbind.confd-r1 ypbind
exeinto /etc/init.d ; newexe ${FILESDIR}/ypbind.initd ypbind
}
pkg_postinst() {
einfo "To complete setup, you will need to edit /etc/conf.d/ypbind."
einfo "If you are using dhcpcd, be sure to add the -Y option to"
einfo "dhcpcd_eth0 (or eth1, etc.) to keep dhcpcd from clobbering"
einfo "/etc/yp.conf."
}
|