blob: b9e6f0329ca2800aea6d647c0d1dad9fd7dfe1bc (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools xdg
DESCRIPTION="Real-time satellite tracking and orbit prediction application"
HOMEPAGE="http://gpredict.oz9aec.net"
if [[ ${PV} = "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/csete/gpredict.git"
else
SRC_URI="https://github.com/csete/gpredict/releases/download/v${PV}/${P}.tar.bz2"
KEYWORDS="amd64 ppc x86"
fi
LICENSE="GPL-2"
SLOT="0"
RDEPEND="
dev-libs/glib:2
sci-geosciences/gpsd:=
x11-libs/cairo
x11-libs/gdk-pixbuf:2[jpeg]
x11-libs/gtk+:3
x11-libs/pango
net-misc/curl
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig
"
DOCS=( AUTHORS NEWS README )
PATCHES=(
# remove wrong doc location
"${FILESDIR}/${PN}-2.3-doc.patch"
"${FILESDIR}/${PN}-2.3-gethostbyname.patch"
)
src_prepare() {
default
# prepare Version info
if [[ ${PV} != "9999" ]]; then
echo "${PV}" > "${S}"/.tarball-version
fi
eautoreconf
}
|