blob: 305a6b073833dd4f81cd91df14477c4ed70d07a3 (
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-2004 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.5 2004/07/19 22:16:40 kloeri 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
}
|