blob: d232bb5c4dbf13bed1c871d0c4a0f4d1aa00ceee (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="blackbox weather monitor"
HOMEPAGE="https://www.netmeister.org/apps/bbweather/"
SRC_URI="https://www.netmeister.org/apps/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ~hppa ppc x86"
IUSE=""
DEPEND="dev-lang/perl
x11-libs/libX11"
RDEPEND="${DEPEND}
net-misc/wget
x11-apps/xmessage"
PATCHES=( "${FILESDIR}"/${PN}-asneeded.patch )
src_prepare() {
default
gunzip doc/*.gz || die
mv configure.{in,ac} || die
sed -i \
-e "s:man_DATA:man1_MANS:;s:.gz::g;/^mandir/d" \
doc/Makefile.am || die
sed -i \
-e 's|-helvetica-|-*-|g' \
resource.cpp data/${PN}.{nobb,style} || die
sed -i \
-e 's|register ||' \
Image.cpp || die
eautoreconf
}
src_install() {
emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install
dodoc README AUTHORS ChangeLog NEWS TODO data/README.bbweather
# since multiple bbtools packages provide this file, install
# it in /usr/share/doc/${PF}
mv "${D}"/usr/share/bbtools/bbtoolsrc.in \
"${D}"/usr/share/doc/${PF}/bbtoolsrc.example || die
}
|