blob: cd953b371ff18c13d977154b528bc659ea490f39 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbweather/bbweather-0.6.3.ebuild,v 1.4 2012/02/03 22:30:16 ranger Exp $
EAPI=2
inherit autotools eutils
DESCRIPTION="blackbox weather monitor"
HOMEPAGE="http://www.netmeister.org/apps/bbweather/"
SRC_URI="http://www.netmeister.org/apps/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ppc ~sparc ~x86"
IUSE=""
DEPEND="dev-lang/perl
x11-libs/libX11"
RDEPEND="${DEPEND}
net-misc/wget
x11-apps/xmessage
!<=x11-plugins/gkrellweather-2.0.7-r1"
src_prepare() {
epatch "${FILESDIR}"/${PN}-asneeded.patch
sed -i -e "s/man_DATA/man1_MANS/" \
-e "/^mandir/d" doc/Makefile.am || die
eautoreconf
}
src_install () {
emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install || die
dodoc README AUTHORS ChangeLog NEWS TODO data/README.bbweather || die
# 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
}
|