Files
@ 794dc86717e2
Branch filter:
Location: portage-overlay.git/app-text/catfish/catfish-0.3.2.ebuild - annotation
794dc86717e2
971 B
application/vnd.gentoo.ebuild
initial commit of main tree
794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 | # Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header$
EAPI="1"
DESCRIPTION="GTK+2 fontend for different search engines (daemons)"
HOMEPAGE="http://software.twotoasts.de/index.php?/pages/catfish_summary.html"
SRC_URI="http://www.twotoasts.de/media/catfish/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~ppc-macos ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="beagle slocate tracker"
DEPEND="dev-python/pygtk
dev-python/pyxdg
>=gnome-base/libglade-2.0
sys-apps/dbus"
RDEPEND="${DEPEND}
sys-apps/findutils
beagle? ( app-misc/beagle )
slocate? ( sys-apps/slocate )
tracker? ( app-misc/tracker )"
RESTRICT="primaryuri"
export PREFIX="/usr"
src_compile() {
sed -e "s:PREFIX=.*$::g" Makefile.in > Makefile
emake || die "Make failed"
}
src_install() {
emake install DESTDIR="${D}" || die "Install failed"
dodoc AUTHORS ChangeLog README TODO
}
|