summaryrefslogtreecommitdiff
blob: a8b2dc568c513e068d362d2078d0b522dec5437a (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-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Michael Conrad Tilstra <michael@gentoo.org> <tadpol@tadpol.org>
# $Header: /var/cvsroot/gentoo-x86/app-office/sc/sc-7.12.ebuild,v 1.3 2001/11/10 03:03:57 hallski 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=""

DEPEND="virtual/glibc
        >=sys-libs/ncurses-5.2"

src_compile() {
    try make CFLAGS="-DSYSV3 $CFLAGS" prefix=/usr
}

src_install () {
    dodir /usr/bin
    dodir /usr/share/man/man1
    dodir /usr/lib/sc
    try make prefix=${D}/usr MANDIR=${D}/usr/share/man/man1 install
 
    dodoc CHANGES README sc.doc psc.doc tutorial.sc
    dodoc VMS_NOTES ${P}.lsm TODO SC.MACROS
}

# vim: ai et sw=4 ts=4