summaryrefslogtreecommitdiff
blob: 9e68a17be3dd452e947f36d8a2f62a84cbcbd19b (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
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit autotools eutils

DESCRIPTION="GTK+ linux weather satellite APT image decoder software"
HOMEPAGE="http://www.qsl.net/5b4az/pages/apt.html"
SRC_URI="http://www.qsl.net/5b4az/pkg/apt/${PN}/${P}.tar.bz2"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="
	net-wireless/rtl-sdr
	media-libs/alsa-lib
	dev-libs/glib:2
	x11-libs/gtk+:3"
DEPEND="${RDEPEND}
	sys-devel/gettext
	virtual/pkgconfig"

HTML_DOCS="doc/xwxapt.html"

src_prepare() {
	eapply_user
	eapply -p0 "${FILESDIR}"/${P}-install.patch
	# suppress -Weverything flag
	sed -i -e "s/= -Weverything/= /" src/Makefile.am || die
	# create missing mkinstalldir and prepare package
	glib-gettextize --force --copy || die "gettextize failed"
	eautoreconf
}

src_install() {
	default
	insinto /usr/share/${PN}
	doins xwxapt/xwxaptrc
	doins xwxapt/xwxapt.glade
	dodir /usr/share/${PN}/images /usr/share/${PN}/records
}

pkg_postinst() {
	einfo "You must copy the /usr/share/xwxapt directory into your home directory"
	einfo "and configure the contained xwxaptrc file before starting the program"
	ewarn
	ewarn "If you just upgraded from <=xwxapt-3 do not miss to check"
	ewarn "for changes there"
}