diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-11-26 22:48:36 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-11-26 22:48:36 +0000 |
commit | 55e21e77ad88950c2dbbcfcbe8e189e553c31828 (patch) | |
tree | 5a7b1d957f000c4e2b09118c9d1fad80624086b5 /net-nds/ypbind | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-55e21e77ad88950c2dbbcfcbe8e189e553c31828.tar.gz gentoo-2-55e21e77ad88950c2dbbcfcbe8e189e553c31828.tar.bz2 gentoo-2-55e21e77ad88950c2dbbcfcbe8e189e553c31828.zip |
*** empty log message ***
Diffstat (limited to 'net-nds/ypbind')
-rw-r--r-- | net-nds/ypbind/files/digest-ypbind-1.7 | 1 | ||||
-rw-r--r-- | net-nds/ypbind/ypbind-1.7.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/net-nds/ypbind/files/digest-ypbind-1.7 b/net-nds/ypbind/files/digest-ypbind-1.7 new file mode 100644 index 000000000000..f94aa2fa644f --- /dev/null +++ b/net-nds/ypbind/files/digest-ypbind-1.7 @@ -0,0 +1 @@ +MD5 d6f98266a18f25337cd6afdb8282af4f ypbind-mt-1.7.tar.gz diff --git a/net-nds/ypbind/ypbind-1.7.ebuild b/net-nds/ypbind/ypbind-1.7.ebuild new file mode 100644 index 000000000000..19bd56bce105 --- /dev/null +++ b/net-nds/ypbind/ypbind-1.7.ebuild @@ -0,0 +1,37 @@ +# 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-nds/ypbind/ypbind-1.7.ebuild,v 1.1 2000/11/26 22:48:36 achim Exp $ + +A=ypbind-mt-${PV}.tar.gz +S=${WORKDIR}/ypbind-mt-${PV} +DESCRIPTION="Multithreaded NIS bind service" +SRC_URI="ftp://ftp.de.kernel.org/pub/linux/utils/net/NIS/"${A} +HOMEPAGE="http://www.suse.de/~kukuk/nis/ypbind-mt/index.html" + +DEPEND=">=sys-libs/glibc-2.1.3" + +src_unpack() { + unpack ${A} +} + +src_compile() { + cd ${S} + try ./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/yp --with-catgets + try make +} + +src_install() { + cd ${S} + try make DESTDIR=${D} install + insinto /etc/rc.d/init.d + doins ${O}/files/ypbind + dodoc AUTHORS ChangeLog COPYING README THANKS TODO + insinto /etc/yp + doins etc/yp.conf + prepman +} + + + + |