diff options
author | 2001-05-16 14:51:39 +0000 | |
---|---|---|
committer | 2001-05-16 14:51:39 +0000 | |
commit | fa44568bf0c6dc243327d1ddc6776bfeb082c83d (patch) | |
tree | 3b02d1a2f08bc52ed31c48ccb92d9dd3ac771ddd /app-office/sc/sc-7.12.ebuild | |
parent | Install bug fixes (diff) | |
download | historical-fa44568bf0c6dc243327d1ddc6776bfeb082c83d.tar.gz historical-fa44568bf0c6dc243327d1ddc6776bfeb082c83d.tar.bz2 historical-fa44568bf0c6dc243327d1ddc6776bfeb082c83d.zip |
Update
Diffstat (limited to 'app-office/sc/sc-7.12.ebuild')
-rw-r--r-- | app-office/sc/sc-7.12.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-office/sc/sc-7.12.ebuild b/app-office/sc/sc-7.12.ebuild new file mode 100644 index 000000000000..7cc0fb556cf6 --- /dev/null +++ b/app-office/sc/sc-7.12.ebuild @@ -0,0 +1,30 @@ +# 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.1 2001/05/16 14:51:39 achim Exp $ + +#P= +A=${P}.tar.gz +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/${A}" +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 |