diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-26 10:16:11 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-26 10:16:11 +0000 |
commit | 6792a7de32342a4c9cab7494747fdde842d1d699 (patch) | |
tree | d0181de94e4598a8e5eb7e4f47a3ba1abc4497d0 /app-shells/dsh | |
parent | removed pic crap (diff) | |
download | historical-6792a7de32342a4c9cab7494747fdde842d1d699.tar.gz historical-6792a7de32342a4c9cab7494747fdde842d1d699.tar.bz2 historical-6792a7de32342a4c9cab7494747fdde842d1d699.zip |
removed pic crap
Diffstat (limited to 'app-shells/dsh')
-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 } |