blob: c1227e35daf3ee968c2f78f97324c32a5a78ed0b (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellstock/gkrellstock-0.4.ebuild,v 1.6 2004/01/04 18:36:47 aliz Exp $
S=${WORKDIR}/${P/s/S}
DESCRIPTION="Get Stock quotes plugin for GKrellM"
SRC_URI="mirror://sourceforge/gkrellstock/${P}.tar.gz"
HOMEPAGE="http://gkrellstock.sourceforge.net/"
DEPEND="=app-admin/gkrellm-1*
dev-perl/libwww-perl
dev-perl/Finance-Quote"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc "
src_compile() {
emake || die
}
src_install () {
insinto /usr/lib/gkrellm/plugins
doins gkrellstock.so
exeinto /usr/X11R6/bin
doexe GetQuote
dodoc README ChangeLog COPYING
}
|