blob: c76d83d1967f52db86b6a51bd402e0952e99a156 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmweather/wmweather-2.4.0.ebuild,v 1.1 2003/05/28 12:55:38 joker Exp $
DESCRIPTION="Dockable applette for WindowMaker that shows weather."
SRC_URI="http://www.godisch.de/debian/wmweather/${P}.tar.gz"
HOMEPAGE="http://www.godisch.de/debian/wmweather/"
DEPEND="virtual/x11
net-ftp/curl"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc"
src_compile() {
cd ${S}/src
econf || die
emake || die
}
src_install () {
cd ${S}/src
make DESTDIR=${D} install || die
dodoc CHANGES COPYING README
}
|