blob: 6130f02abfe59ab02a980a6607ea9e5ba3c4a4c3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/imgseek/imgseek-0.8.5.ebuild,v 1.1 2005/04/21 16:05:24 carlo Exp $
inherit eutils
MY_P="imgSeek-${PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Photo collection manager with content-based search."
HOMEPAGE="http://imgseek.sourceforge.net/"
SRC_URI="mirror://sourceforge/imgseek/${MY_P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=dev-lang/python-2.2
>=dev-python/PyQt-3.5
dev-python/imaging"
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 COPYING AUTHORS README THANKS
insinto /usr/share/imgSeek
doins imgSeek.png
make_desktop_entry "imgSeek %F" imgSeek "/usr/share/imgSeek/imgSeek.png" "Graphics;Qt"
}
|