diff options
author | 2004-06-22 03:37:34 +0000 | |
---|---|---|
committer | 2004-06-22 03:37:34 +0000 | |
commit | 41f73b296c36394c90f87c54961a6ddc958870b2 (patch) | |
tree | 636b93dbe33b366b3e0667eb21d06563e16ad390 /net-nds/nis-utils/nis-utils-1.4.1-r1.ebuild | |
parent | ver bump #53319 (Manifest recommit) (diff) | |
download | gentoo-2-41f73b296c36394c90f87c54961a6ddc958870b2.tar.gz gentoo-2-41f73b296c36394c90f87c54961a6ddc958870b2.tar.bz2 gentoo-2-41f73b296c36394c90f87c54961a6ddc958870b2.zip |
add init.d script #53492
Diffstat (limited to 'net-nds/nis-utils/nis-utils-1.4.1-r1.ebuild')
-rw-r--r-- | net-nds/nis-utils/nis-utils-1.4.1-r1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net-nds/nis-utils/nis-utils-1.4.1-r1.ebuild b/net-nds/nis-utils/nis-utils-1.4.1-r1.ebuild new file mode 100644 index 000000000000..c06e0c9918f8 --- /dev/null +++ b/net-nds/nis-utils/nis-utils-1.4.1-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/nis-utils/nis-utils-1.4.1-r1.ebuild,v 1.1 2004/06/22 03:37:34 vapier Exp $ + +inherit eutils + +DESCRIPTION="NIS+ utilities" +HOMEPAGE="http://www.linux-nis.org/" +SRC_URI="mirror://kernel/linux/utils/net/NIS+/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="nls" + +DEPEND="dev-libs/gmp" + +src_compile() { + econf `use_enable nls` || die "Configure failed" + emake || die "Make Failed" +} + +src_install() { + make DESTDIR=${D} install || die "Install Failed" + mv ${D}/usr/etc ${D}/ + dodoc AUTHORS ChangeLog INSTALL NEWS README THANKS TODO + exeinto /etc/init.d ; newexe ${FILESDIR}/keyserv.rc keyserv +} |