diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-26 10:17:51 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-26 10:17:51 +0000 |
commit | 3b423d96bfc37d945cae98371165421281099baa (patch) | |
tree | 0548924150bbc49ccee7dbd289116f98f4e8a92c /app-shells | |
parent | repoman fix (diff) | |
download | gentoo-2-3b423d96bfc37d945cae98371165421281099baa.tar.gz gentoo-2-3b423d96bfc37d945cae98371165421281099baa.tar.bz2 gentoo-2-3b423d96bfc37d945cae98371165421281099baa.zip |
removed pic crap
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/dsh/dsh-0.23.4.ebuild | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/app-shells/dsh/dsh-0.23.4.ebuild b/app-shells/dsh/dsh-0.23.4.ebuild index e0d1b56291c9..f2bee76c1d6a 100644 --- a/app-shells/dsh/dsh-0.23.4.ebuild +++ b/app-shells/dsh/dsh-0.23.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/dsh/dsh-0.23.4.ebuild,v 1.2 2003/02/13 09:28:54 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/dsh/dsh-0.23.4.ebuild,v 1.3 2003/03/26 10:16:11 seemant Exp $ DESCRIPTION="DSH - Distributed Shell" SRC_URI="http://www.netfort.gr.jp/~dancer/software/downloads/${P}.tar.gz" @@ -9,20 +9,13 @@ HOMEPAGE="http://www.netfort.gr.jp/~dancer/software/downloads/" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" -IUSE="pic nls" +IUSE="nls" DEPEND="dev-libs/libdshconfig" RDEPEND="net-misc/openssh" src_compile() { - local myconf="--with-gnu-ld" - use pic \ - && myconf="${myconf} --with-pic" \ - || myconf="${myconf} --without-pic" - use nls \ - && myconf="${myconf} --enable-nls" \ - || myconf="${myconf} --disable-nls" - econf ${myconf} + econf --with-gnu-ld `use_enable nls` || die make || die } |