# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="pyFind2. A simple file search utility." HOMEPAGE="http://www.anti-particle.com/pyfind2.shtml" SRC_URI="http://www.anti-particle.com/downloads/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86" IUSE="" DEPEND=">=dev-python/pygtk-1.99.16" S=${WORKDIR}/pyfind2 src_compile() { echo "#!/bin/bash" > pyfind2 echo "cd /usr/share/pyfind2" >> pyfind2 echo "python pyfind2.py" >> pyfind2 python -c "import compileall; compileall.compile_dir('${S}')" } src_install() { insinto /usr/share/pyfind2 doins *.py *.pyc pyfind2.conf exeinto /usr/share/pyfind2 doexe pyfind2.py cp -R {glade,pixmaps} ${D}/usr/share/pyfind2 fowners root.root /usr/share/pyfind2/*.py fowners root.root /usr/share/pyfind2/*.pyc into /usr dobin pyfind2 dodoc doc/TODO doc/CHANGELOG doc/INSTALL doc/COPYING doc/README }