blob: 725e245b16d65ee2cbddf653f30c13a6e1363628 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfrog/wmfrog-0.1.6.ebuild,v 1.6 2004/11/24 05:44:05 weeve Exp $
IUSE=""
DESCRIPTION="This is a weather application, it shows the weather in a graphical way."
SRC_URI="http://www.colar.net/wmapps/wmFrog-${PV}.tgz"
HOMEPAGE="http://www.colar.net/wmapps/"
DEPEND="virtual/x11
dev-lang/perl
net-misc/wget"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc ~sparc"
S=${WORKDIR}/wmFrog/Src
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install () {
make DESTDIR=${D} install || die
cd ..
dodoc CHANGES COPYING HINTS
}
|