diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 14:28:46 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 14:28:46 +0000 |
commit | c24911846e7ed1241af6447d2860bc6aa99df89b (patch) | |
tree | 415211bb19d8512eda95648d6794f7904f5ba53c /app-sci | |
parent | Changed econf||die to econf (diff) | |
download | gentoo-2-c24911846e7ed1241af6447d2860bc6aa99df89b.tar.gz gentoo-2-c24911846e7ed1241af6447d2860bc6aa99df89b.tar.bz2 gentoo-2-c24911846e7ed1241af6447d2860bc6aa99df89b.zip |
Changed econf||die to econf
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/gturing/gturing-0.1.1.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app-sci/gturing/gturing-0.1.1.ebuild b/app-sci/gturing/gturing-0.1.1.ebuild index 8e062056c583..be90e935932d 100644 --- a/app-sci/gturing/gturing-0.1.1.ebuild +++ b/app-sci/gturing/gturing-0.1.1.ebuild @@ -1,23 +1,24 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/gturing/gturing-0.1.1.ebuild,v 1.1 2002/12/18 13:11:44 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/gturing/gturing-0.1.1.ebuild,v 1.2 2002/12/18 14:28:46 vapier Exp $ DESCRIPTION="GNOME turing machine simulator for" HOMEPAGE="http://www.nuclecu.unam.mx/~arturo/gTuring/" SRC_URI="mirror://gnome/sources/gturing/0.1/${P}.tar.bz2" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" + DEPEND=">=gnome-base/libgnomeui-2.0.0" -S=${WORKDIR}/${P} src_compile() { - econf || die + econf emake || die } src_install() { - einstall || die + einstall dodoc README AUTHORS NEWS TODO } |