blob: 1618dda076fa992313d953b6f3fadb9fa9ab9e0e (
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
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
#$Header $
S=${WORKDIR}/${P}
DESCRIPTION="Generic GUI Module for Python"
SRC_URI="mirror://sourceforge/anygui/${P}.tar.gz"
HOMEPAGE="http://anygui.sourceforge.net/"
DEPEND=">=dev-lang/python-2.0
sys-libs/ncurses
qt? ( =dev-python/PyQt-2.4* )
gtk? ( dev-python/pygtk )
tcltk? ( dev-lang/tk )
wxwin? ( dev-python/wxPython )"
#Propsed wxwin use variable for wxGTK for wxWindows? ( dev-python/wxPython ) *NOT* official
#future:
#also use variable fltk for fltk? ( dev-python/PyFLTK ) no ebuild for PyFLTK yet
#java? ( dev-python/jython ) Java Swing (javagui) http://www.jython.org
src_compile() {
python setup.py build || die "Python Build Failed"
}
src_install() {
python setup.py install --prefix=${D}/usr || die "Python Install Failed"
dodoc CHANGELOG.txt INSTALL.txt KNOWN_BUGS.txt LICENSE.txt \
MAINTAINERS.txt PKG-INFO README.txt TODO.txt VERSION.txt \
doc/anygui.txt doc/tutorial.txt
dohtml doc/anygui.html
insinto /usr/share/doc/${PF}/pdf
doins doc/anygui.pdf
insinto /usr/share/doc/${PF}/ps
doins doc/anygui.ps
}
|