blob: b4c8b9a9703661d8d2936b46294d9c54b6b762ef (
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
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/sc/sc-7.16.ebuild,v 1.1 2005/07/12 07:48:13 spyderous Exp $
inherit eutils
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 sparc amd64"
IUSE=""
DEPEND=">=sys-apps/sed-4.0.5
>=sys-libs/ncurses-5.2"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-amd64.patch
}
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
sed -i "s:${D}::g" sc.1
doman sc.1 psc.1
dodoc CHANGES README sc.doc psc.doc tutorial.sc
dodoc VMS_NOTES ${P}.lsm TODO SC.MACROS
}
# vim: ai et sw=4 ts=4
|