diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-20 10:51:26 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-20 10:51:26 +0000 |
commit | 560c7ce8df0723d698fafb93a250d9f68a9760cd (patch) | |
tree | cc7693ca2a34ed7231a29f238fafef471086a324 /net-nds | |
parent | tidy metadata (Manifest recommit) (diff) | |
download | gentoo-2-560c7ce8df0723d698fafb93a250d9f68a9760cd.tar.gz gentoo-2-560c7ce8df0723d698fafb93a250d9f68a9760cd.tar.bz2 gentoo-2-560c7ce8df0723d698fafb93a250d9f68a9760cd.zip |
use emake; use use_enable; don't install COPYING; tidy
Diffstat (limited to 'net-nds')
-rw-r--r-- | net-nds/ypbind/ChangeLog | 5 | ||||
-rw-r--r-- | net-nds/ypbind/ypbind-1.17.2.ebuild | 23 |
2 files changed, 15 insertions, 13 deletions
diff --git a/net-nds/ypbind/ChangeLog b/net-nds/ypbind/ChangeLog index f657d6b0d708..5c2e43b38a58 100644 --- a/net-nds/ypbind/ChangeLog +++ b/net-nds/ypbind/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-nds/ypbind # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.17 2004/06/25 00:23:52 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.18 2004/07/20 10:51:26 mr_bones_ Exp $ + + 16 Jul 2004; Michael Sterrett <mr_bones_@gentoo.org> ypbind-1.17.2.ebuild: + use emake; use use_enable; don't install COPYING; tidy 08 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> ypbind-1.17.2.ebuild: Stable on alpha. diff --git a/net-nds/ypbind/ypbind-1.17.2.ebuild b/net-nds/ypbind/ypbind-1.17.2.ebuild index a4dc0ebd4a91..6bfa084860b4 100644 --- a/net-nds/ypbind/ypbind-1.17.2.ebuild +++ b/net-nds/ypbind/ypbind-1.17.2.ebuild @@ -1,32 +1,31 @@ # 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.ebuild,v 1.4 2004/06/25 00:23:52 agriffis Exp $ - -IUSE="nls" +# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ypbind-1.17.2.ebuild,v 1.5 2004/07/20 10:51:26 mr_bones_ Exp $ MY_P=${PN}-mt-${PV} -S=${WORKDIR}/${MY_P} DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)" -SRC_URI="ftp://ftp.kernel.org/pub/linux/utils/net/NIS/${MY_P}.tar.bz2" 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" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="~x86 ~sparc alpha ~ppc ~amd64" +IUSE="nls" -DEPEND="net-nds/yp-tools net-nds/portmap" +DEPEND="net-nds/yp-tools + net-nds/portmap" RDEPEND="nls? ( sys-devel/gettext )" +S="${WORKDIR}/${MY_P}" + src_compile() { - local myconf - use nls || myconf="--disable-nls" - econf ${myconf} || die - make || die + econf $(use_enable nls) || die + emake || die "emake failed" } src_install() { einstall || die - dodoc AUTHORS ChangeLog COPYING README THANKS TODO + dodoc AUTHORS ChangeLog README THANKS TODO insinto /etc ; doins etc/yp.conf insinto /etc/conf.d ; newins ${FILESDIR}/ypbind.confd ypbind exeinto /etc/init.d ; newexe ${FILESDIR}/ypbind.rc6 ypbind |