summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-office/sc/sc-7.16.ebuild')
-rw-r--r--app-office/sc/sc-7.16.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/app-office/sc/sc-7.16.ebuild b/app-office/sc/sc-7.16.ebuild
deleted file mode 100644
index b4c8b9a97036..000000000000
--- a/app-office/sc/sc-7.16.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# 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