blob: 45390311f54bb6982339b429e358c817a77bf84b (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/gato/gato-0.98i.ebuild,v 1.1 2003/12/17 00:42:00 brandy Exp $
DESCRIPTION="Graph Animation Toolbox"
HOMEPAGE="http://www.zpr.uni-koeln.de/~gato/"
SRC_URI="http://www.zpr.uni-koeln.de/~gato/Download/Gato-0.98I.tar"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND="dev-lang/python
dev-lang/tk"
S=${WORKDIR}/Gato
src_install() {
insinto /usr/lib/${PN}
doins *.py
fperms 755 /usr/lib/${PN}/Gato.py /usr/lib/${PN}/Gred.py
dodir /usr/bin
dosym /usr/lib/${PN}/Gato.py /usr/bin/gato
dosym /usr/lib/${PN}/Gred.py /usr/bin/gred
insinto /usr/share/${PN}
doins BFS.* DFS.* sample.cat
}
|