blob: 141ec3aea06d69420bb45be5e34c4e396b270d99 (
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
30
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-office/sc/sc-7.12.ebuild,v 1.7 2002/09/20 18:50:49 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="sc is a free curses-based spreadsheet program that uses key bindings similar to vi and less."
SRC_URI="ftp://ibiblio.org/pub/Linux/apps/financial/spreadsheet/${P}.tar.gz"
HOMEPAGE="http://ibiblio.org/pub/Linux/apps/financial/spreadsheet/"
SLOT="0"
LICENSE="public-domain"
KEYWORDS="x86 ppc"
DEPEND=">=sys-libs/ncurses-5.2"
src_compile() {
make CFLAGS="-DSYSV3 $CFLAGS" prefix=/usr || die
}
src_install () {
dodir /usr/bin
dodir /usr/share/man/man1
dodir /usr/lib/sc
make prefix=${D}/usr MANDIR=${D}/usr/share/man/man1 install || die
dodoc CHANGES README sc.doc psc.doc tutorial.sc
dodoc VMS_NOTES ${P}.lsm TODO SC.MACROS
}
# vim: ai et sw=4 ts=4
|