diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 21:54:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 21:54:23 +0000 |
commit | 893fd9915c82e70259eb97505c8e430cbad2f366 (patch) | |
tree | bf140056c956e409616b9bc8c57d6291e4d877de /app-misc/towitoko/towitoko-2.0.7.ebuild | |
parent | Changed mkdir ${D} to dodir ${D} (diff) | |
download | gentoo-2-893fd9915c82e70259eb97505c8e430cbad2f366.tar.gz gentoo-2-893fd9915c82e70259eb97505c8e430cbad2f366.tar.bz2 gentoo-2-893fd9915c82e70259eb97505c8e430cbad2f366.zip |
Changed econf||die to econf
Diffstat (limited to 'app-misc/towitoko/towitoko-2.0.7.ebuild')
-rw-r--r-- | app-misc/towitoko/towitoko-2.0.7.ebuild | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/app-misc/towitoko/towitoko-2.0.7.ebuild b/app-misc/towitoko/towitoko-2.0.7.ebuild index 82f124c93a5a..0306580120e6 100644 --- a/app-misc/towitoko/towitoko-2.0.7.ebuild +++ b/app-misc/towitoko/towitoko-2.0.7.ebuild @@ -1,8 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/towitoko/towitoko-2.0.7.ebuild,v 1.2 2002/11/30 21:54:23 vapier Exp $ -S=${WORKDIR}/${P} DESCRIPTION="This library provides a driver for using Towitoko smartcard readers under UNIX environment." SRC_URI="http://www.geocities.com/cprados/files/${P}.tar.gz" HOMEPAGE="http://www.geocities.com/cprados/" @@ -12,19 +11,13 @@ LICENSE="GPL-2" KEYWORDS="~x86" IUSE="static" -DEPEND="virtual/glibc" - src_compile() { - - local myconf - myconf="${myconf} --enable-devfs" + local myconf="--enable-devfs" use static && myconf="${myconf} --enable-static" - econf ${myconf} || die + econf ${myconf} emake || die - } -src_install () { - - einstall || die +src_install() { + einstall } |