diff options
author | Hanno Böck <hanno@gentoo.org> | 2002-12-18 13:11:44 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2002-12-18 13:11:44 +0000 |
commit | b3a0aec1f5847f38771eeca161a0d23531ed8597 (patch) | |
tree | 5befbe7e09d0c875fdb87a44a515477d7fe6e449 /app-sci/gturing | |
parent | unmask x86 (diff) | |
download | gentoo-2-b3a0aec1f5847f38771eeca161a0d23531ed8597.tar.gz gentoo-2-b3a0aec1f5847f38771eeca161a0d23531ed8597.tar.bz2 gentoo-2-b3a0aec1f5847f38771eeca161a0d23531ed8597.zip |
added gturing ebuild
Diffstat (limited to 'app-sci/gturing')
-rw-r--r-- | app-sci/gturing/ChangeLog | 8 | ||||
-rw-r--r-- | app-sci/gturing/files/digest-gturing-0.1.1 | 1 | ||||
-rw-r--r-- | app-sci/gturing/gturing-0.1.1.ebuild | 23 |
3 files changed, 32 insertions, 0 deletions
diff --git a/app-sci/gturing/ChangeLog b/app-sci/gturing/ChangeLog new file mode 100644 index 000000000000..f68a3bb1be05 --- /dev/null +++ b/app-sci/gturing/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-sci/gturing +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/gturing/ChangeLog,v 1.1 2002/12/18 13:11:44 hanno Exp $ + +*gturing-0.1.1 (18 Dec 2002) + + 18 Dec 2002; Hanno Boeck <hanno@gentoo.org> gturing-0.1.1.ebuild : + gturing is a turing machine simulator for GNOME. diff --git a/app-sci/gturing/files/digest-gturing-0.1.1 b/app-sci/gturing/files/digest-gturing-0.1.1 new file mode 100644 index 000000000000..97995e230938 --- /dev/null +++ b/app-sci/gturing/files/digest-gturing-0.1.1 @@ -0,0 +1 @@ +MD5 c31f0a1357fe9aeee149c2c998a8fb1f gturing-0.1.1.tar.bz2 376032 diff --git a/app-sci/gturing/gturing-0.1.1.ebuild b/app-sci/gturing/gturing-0.1.1.ebuild new file mode 100644 index 000000000000..8e062056c583 --- /dev/null +++ b/app-sci/gturing/gturing-0.1.1.ebuild @@ -0,0 +1,23 @@ +# 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 $ + +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 + emake || die +} + +src_install() { + einstall || die + dodoc README AUTHORS NEWS TODO +} |