blob: 301a30a5e73b310c017b5c34d65a7d9f3dd8786a (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbweather/bbweather-0.5.ebuild,v 1.6 2003/03/11 21:11:49 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="blackbox weather monitor"
SRC_URI="http://www.netmeister.org/apps/${P}.tar.bz2"
HOMEPAGE="http://www.netmeister.org/apps/bbweather/"
SLOT="0"
LICENSE="GPL"
KEYWORDS="*"
DEPEND="virtual/blackbox
>=net-misc/wget-1.7
>=dev-lang/perl-5.6.1"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
rm -rf ${D}/usr/share/doc
dodoc README COPYING AUTHORS INSTALL ChangeLog NEWS TODO data/README.bbweather
dohtml -r doc
}
|