diff options
author | 2001-04-21 11:29:52 +0000 | |
---|---|---|
committer | 2001-04-21 11:29:52 +0000 | |
commit | 215c004b3cf5c4c9c2e83be9322ef45dcb6bf1e9 (patch) | |
tree | bc53727e88f813efd49953a85021e486bd519601 /net-nds/yp-tools/yp-tools-2.4-r2.ebuild | |
parent | *** empty log message *** (diff) | |
download | historical-215c004b3cf5c4c9c2e83be9322ef45dcb6bf1e9.tar.gz historical-215c004b3cf5c4c9c2e83be9322ef45dcb6bf1e9.tar.bz2 historical-215c004b3cf5c4c9c2e83be9322ef45dcb6bf1e9.zip |
FHS2.1 fixes
Diffstat (limited to 'net-nds/yp-tools/yp-tools-2.4-r2.ebuild')
-rw-r--r-- | net-nds/yp-tools/yp-tools-2.4-r2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/net-nds/yp-tools/yp-tools-2.4-r2.ebuild b/net-nds/yp-tools/yp-tools-2.4-r2.ebuild new file mode 100644 index 000000000000..f12be782481d --- /dev/null +++ b/net-nds/yp-tools/yp-tools-2.4-r2.ebuild @@ -0,0 +1,32 @@ +# 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/yp-tools/yp-tools-2.4-r2.ebuild,v 1.1 2001/04/21 11:29:52 achim Exp $ + +P=yp-tools-2.4 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="NIS Tools" +SRC_URI="ftp://ftp.de.kernel.org/pub/linux/utils/net/NIS/${A} + ftp://ftp.uk.kernel.org/pub/linux/utils/net/NIS/${A} + ftp://ftp.kernel.org/pub/linux/utils/net/NIS/${A}" +HOMEPAGE="http://www.suse.de/~kukuk/nis/yp-tools/index.html" + +DEPEND="virtual/glibc" + + +src_compile() { + try ./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/yp \ + --mandir=/usr/share/man + try make +} + +src_install() { + try make DESTDIR=${D} install + dodoc AUTHORS ChangeLog COPYING NEWS README THANKS TODO + insinto /etc/yp + doins etc/nicknames +} + + + |