diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-08-24 23:23:27 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-08-24 23:23:27 +0000 |
commit | 0d822049cbf75e0945915562152b0ac04543b72e (patch) | |
tree | 4cb6c47b46ab69ec5165737e3780f38b8f2fdd7a /net-nds/ypbind/ypbind-1.17.2-r1.ebuild | |
parent | initial commit of ipkg-utils. ebuild written by tigger@g.o (Manifest recommit) (diff) | |
download | gentoo-2-0d822049cbf75e0945915562152b0ac04543b72e.tar.gz gentoo-2-0d822049cbf75e0945915562152b0ac04543b72e.tar.bz2 gentoo-2-0d822049cbf75e0945915562152b0ac04543b72e.zip |
1.17.2-r1 stable on x86, sparc, and amd64. Added slp USE flag support.
Diffstat (limited to 'net-nds/ypbind/ypbind-1.17.2-r1.ebuild')
-rw-r--r-- | net-nds/ypbind/ypbind-1.17.2-r1.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net-nds/ypbind/ypbind-1.17.2-r1.ebuild b/net-nds/ypbind/ypbind-1.17.2-r1.ebuild index bb9b81b719c2..ec76b66ff96a 100644 --- a/net-nds/ypbind/ypbind-1.17.2-r1.ebuild +++ b/net-nds/ypbind/ypbind-1.17.2-r1.ebuild @@ -1,6 +1,8 @@ # 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.2 2004/08/23 21:50:50 eradicator Exp $ +# $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)" @@ -9,11 +11,10 @@ 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" -IUSE="nls" +KEYWORDS="x86 sparc ~alpha ~ppc amd64 ~ia64 ~ppc64" DEPEND="net-nds/yp-tools - net-libs/openslp + slp? ( net-libs/openslp ) net-nds/portmap" RDEPEND="nls? ( sys-devel/gettext )" @@ -21,7 +22,7 @@ RDEPEND="nls? ( sys-devel/gettext )" S="${WORKDIR}/${MY_P}" src_compile() { - econf $(use_enable nls) || die + econf `use_enable nls` `use_enable slp` || die emake || die "emake failed" } |