summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-libs/gpm/gpm-1.19.3.ebuild')
-rw-r--r--sys-libs/gpm/gpm-1.19.3.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/sys-libs/gpm/gpm-1.19.3.ebuild b/sys-libs/gpm/gpm-1.19.3.ebuild
deleted file mode 100644
index f5d4646c2c08..000000000000
--- a/sys-libs/gpm/gpm-1.19.3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Daniel Robbins <drobbins@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/gpm/gpm-1.19.3.ebuild,v 1.5 2000/11/30 23:14:00 achim Exp $
-
-P=gpm-1.19.3
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="Console-based mouse driver"
-SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/mouse/${A}"
-
-DEPEND=">=sys-libs/glibc-2.1.3
- >=sys-libs/ncurses-5.1"
-
-RDEPEND=$DEPEND
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- cp ${FILESDIR}/gpmInt.h .
-}
-
-src_compile() {
- cd ${S}
- try ./configure --prefix=/usr --sysconfdir=/etc/gpm
- cp Makefile Makefile.orig
- if [ -z "`use tex`" ]
- then
- sed -e "s/doc//" Makefile.orig > Makefile
- fi
- try make ${MAKEOPTS}
-}
-
-src_install() {
- try make prefix=${D}/usr install
- chmod 755 ${D}/usr/lib/libgpm.so.1.18.0
- dodoc Announce COPYING ChangeLog FAQ MANIFEST README.*
- docinto txt
- dodoc doc/gpmdoc.txt
- if [ "`use tex`" ]
- then
- docinto ps
- dodoc doc/*.ps
- fi
- insinto /etc/gpm
- doins gpm-root.conf
-
-}
-
-
-