blob: a8fc710e75f27fb80f33f5bc0dbc8111ed0883d7 (
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
29
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/smtm/smtm-1.4.0.ebuild,v 1.10 2004/06/24 22:33:41 agriffis Exp $
DESCRIPTION="Stock ticker, profit/loss calculator and chart tool"
HOMEPAGE="http://eddelbuettel.com/dirk/code/smtm.html"
SRC_URI="http://eddelbuettel.com/dirk/code/smtm/smtm_${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND=">=dev-lang/perl-5
dev-perl/perl-tk
dev-perl/DateManip
dev-perl/libwww-perl"
S=${WORKDIR}
src_install() {
exeinto /usr/bin
doexe smtm
dohtml smtm.html
dodoc BUGS COPYING THANKS TODO
docinto examples
dodoc examples/*.smtm
}
|