blob: 019ceaacd19f740d2890bc6c4a04806e0efe5dc9 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpscorrelate/gpscorrelate-1.5.6.ebuild,v 1.3 2008/08/23 18:13:05 maekke Exp $
inherit eutils
MY_PV=${PV/_/-}
DESCRIPTION="Happy Camel is intended to combine your digital camera with your GPS device"
HOMEPAGE="http://happycamel.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${PN}-v${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa x86"
DEPEND="virtual/python-imaging
media-libs/exiftool"
S=${WORKDIR}/${PN}-v${MY_PV}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/happycamel-v1-beta3-ds-features.patch || die
epatch "${FILESDIR}"/HappyCamel-optional-correlate.diff || die
epatch "${FILESDIR}"/happycamel-ds-icons.patch || die
}
src_install() {
./setup.py install --root="${D}" --no-compile
}
|