blob: b0664cd9b2a1d35f9aa9e894ed708478fa9300b1 (
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
34
35
36
37
38
39
40
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gebabbel/gebabbel-0.3.ebuild,v 1.1 2007/09/06 19:25:53 hanno Exp $
inherit eutils
DESCRIPTION="QT-Frontend to load and convert gps tracks with gpsbabel"
HOMEPAGE="http://gebabbel.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/Gebabbel-${PV}-Src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=x11-libs/qt-4.3.0
sci-geosciences/gpsbabel"
S="${WORKDIR}/Gebabbel-${PV}"
pkg_setup() {
if ! built_with_use 'x11-libs/qt' 'accessibility'; then
eerror "You must build qt with accessibility support"
die "x11-libs/qt built without accessibility"
fi
}
src_unpack() {
unpack "${A}" || die
cd "${S}"
epatch "${FILESDIR}/${P}-fix.diff"
}
src_compile() {
qmake || die
emake || die
}
src_install() {
dobin bin/gebabbel || die
dodoc CHANGELOG || die
}
|