summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Conrad Tilstra <michael@gentoo.org>2001-05-13 23:25:51 +0000
committerMichael Conrad Tilstra <michael@gentoo.org>2001-05-13 23:25:51 +0000
commit50a09165521435905f43627236b60054376c02f1 (patch)
treecfc9396642487355de54177ed75870ea0101c7d9 /app-office/sc
parentiChanged basename ${0} in the SERVICE line to svc-dnscache (diff)
downloadgentoo-2-50a09165521435905f43627236b60054376c02f1.tar.gz
gentoo-2-50a09165521435905f43627236b60054376c02f1.tar.bz2
gentoo-2-50a09165521435905f43627236b60054376c02f1.zip
Added sc, curses-based spreadsheet.
Diffstat (limited to 'app-office/sc')
-rw-r--r--app-office/sc/files/digest-sc-7.111
-rw-r--r--app-office/sc/sc-7.11.ebuild30
2 files changed, 31 insertions, 0 deletions
diff --git a/app-office/sc/files/digest-sc-7.11 b/app-office/sc/files/digest-sc-7.11
new file mode 100644
index 000000000000..68c1f1a92fe5
--- /dev/null
+++ b/app-office/sc/files/digest-sc-7.11
@@ -0,0 +1 @@
+MD5 b605190e819e51e4b513cbaeb4119640 sc-7.11.tar.gz
diff --git a/app-office/sc/sc-7.11.ebuild b/app-office/sc/sc-7.11.ebuild
new file mode 100644
index 000000000000..3cc86516afc6
--- /dev/null
+++ b/app-office/sc/sc-7.11.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.11.ebuild,v 1.1 2001/05/13 23:25:51 michael 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 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 sc-7.11.lsm TODO SC.MACROS
+}
+
+# vim: ai et sw=4 ts=4