blob: 5b30315a3d126767c1080642c5622ce834150e7e (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Joe Bormolini <lordjoe@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbweather/bbweather-0.3.ebuild,v 1.1 2001/08/31 00:49:02 woodchip 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/index.html"
DEPEND=">=x11-wm/blackbox-0.61
>=net-misc/wget-1.7
>=sys-devel/perl-5.6.1"
src_compile() {
./configure --prefix=/usr/X11R6 --host=${CHOST} || 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
docinto html
dodoc doc/*.html
}
|