blob: 06c1eb8e3f97ad0ac2a9e0881958c8547ce01993 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gturing/gturing-0.1.1.ebuild,v 1.3 2006/04/14 20:06:19 cryos Exp $
inherit eutils
DESCRIPTION="GNOME turing machine simulator"
HOMEPAGE="http://www.nuclecu.unam.mx/~arturo/gTuring/"
SRC_URI="mirror://gnome/sources/${PN}/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
DEPEND=">=gnome-base/libgnomeui-2.0.0"
src_unpack() {
unpack ${A}
cd "${S}"
epatch ${FILESDIR}/${P}-gettext.patch
epatch ${FILESDIR}/${P}-gcc-41.patch
}
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
dodoc README AUTHORS NEWS TODO
insinto /usr/share/doc/${PF}/examples
doins tapes/*.tur
}
|