blob: 3a5083122a6af43b13a5d19bf4164644caf259bb (
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
|
# Copyright 1999-2004 Gentoo Foundation
# 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.9 2004/06/24 23:19:42 agriffis Exp $
IUSE=""
DESCRIPTION="Dockable applette for WindowMaker that shows weather."
HOMEPAGE="http://www.godisch.de/debian/wmweather/"
SRC_URI="http://www.godisch.de/debian/wmweather/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc amd64 ~mips"
DEPEND="virtual/x11
net-misc/curl"
src_compile() {
cd ${S}/src
econf || die
emake || die
}
src_install() {
dodoc CHANGES README
cd ${S}/src
make DESTDIR=${D} install || die
}
|