blob: 43bca68f87d98f88ef8d74280f9f5d1f697150c0 (
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
|
# Copyright 1999-2009 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.4 2009/09/30 16:39:13 ayoy Exp $
EAPI="2"
inherit eutils qt4
MY_PN=${PN/g/G}
MY_P=${MY_PN}-${PV}
DESCRIPTION="QT-Frontend to load and convert gps tracks with gpsbabel"
HOMEPAGE="http://gebabbel.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}-Src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/qt-core:4
x11-libs/qt-gui:4[accessibility]"
RDEPEND="${DEPEND}
sci-geosciences/gpsbabel"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}/${P}-fix.diff"
}
src_configure() {
eqmake4 ${MY_PN}.pro
}
src_install() {
dobin bin/${PN} || die "dobin failed"
dodoc CHANGELOG || die "dodoc failed"
}
|