blob: 7bff6aa8ba0a4e259ed6e3a1a0243222b44bef66 (
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
|
# 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.2.ebuild,v 1.6 2005/02/22 21:05:17 carlo Exp $
S=${WORKDIR}/imgSeek-${PV}
DESCRIPTION="Photo collection manager with content-based search."
HOMEPAGE="http://imgseek.sourceforge.net/"
SRC_URI="mirror://sourceforge/imgseek/imgSeek-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
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
}
|