summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-05-16 14:51:39 +0000
committerAchim Gottinger <achim@gentoo.org>2001-05-16 14:51:39 +0000
commitfa44568bf0c6dc243327d1ddc6776bfeb082c83d (patch)
tree3b02d1a2f08bc52ed31c48ccb92d9dd3ac771ddd
parentInstall bug fixes (diff)
downloadhistorical-fa44568bf0c6dc243327d1ddc6776bfeb082c83d.tar.gz
historical-fa44568bf0c6dc243327d1ddc6776bfeb082c83d.tar.bz2
historical-fa44568bf0c6dc243327d1ddc6776bfeb082c83d.zip
Update
-rw-r--r--app-office/sc/files/digest-sc-7.121
-rw-r--r--app-office/sc/sc-7.12.ebuild30
2 files changed, 31 insertions, 0 deletions
diff --git a/app-office/sc/files/digest-sc-7.12 b/app-office/sc/files/digest-sc-7.12
new file mode 100644
index 000000000000..f4fa1c7d6ad5
--- /dev/null
+++ b/app-office/sc/files/digest-sc-7.12
@@ -0,0 +1 @@
+MD5 dd9f172ad3c93d70cfacbebc6d5105d2 sc-7.12.tar.gz
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