diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-09 02:10:54 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-09 02:10:54 +0000 |
commit | 3b85f6dfe5c5a53951d993f35d74fe88597ee623 (patch) | |
tree | b0ddc2a1d67e12d8db8eeca758d016248d77d1a8 /sys-libs/gpm | |
parent | Some cleanup (diff) | |
download | gentoo-2-3b85f6dfe5c5a53951d993f35d74fe88597ee623.tar.gz gentoo-2-3b85f6dfe5c5a53951d993f35d74fe88597ee623.tar.bz2 gentoo-2-3b85f6dfe5c5a53951d993f35d74fe88597ee623.zip |
*** empty log message ***
Diffstat (limited to 'sys-libs/gpm')
-rw-r--r-- | sys-libs/gpm/files/digest-gpm-1.19.3-r2 | 2 | ||||
-rw-r--r-- | sys-libs/gpm/gpm-1.19.3-r2.ebuild | 62 |
2 files changed, 0 insertions, 64 deletions
diff --git a/sys-libs/gpm/files/digest-gpm-1.19.3-r2 b/sys-libs/gpm/files/digest-gpm-1.19.3-r2 deleted file mode 100644 index 77933740e92e..000000000000 --- a/sys-libs/gpm/files/digest-gpm-1.19.3-r2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 dbfc33e0d52d008eeec1c8f93885e3f9 gpm-1.19.3.tar.gz -MD5 69337348611578f680dc8e2224296878 devfs.patch diff --git a/sys-libs/gpm/gpm-1.19.3-r2.ebuild b/sys-libs/gpm/gpm-1.19.3-r2.ebuild deleted file mode 100644 index 41156b98fd20..000000000000 --- a/sys-libs/gpm/gpm-1.19.3-r2.ebuild +++ /dev/null @@ -1,62 +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-r2.ebuild,v 1.4 2001/05/29 17:28:19 achim Exp $ - -P=gpm-1.19.3 -A="${P}.tar.gz devfs.patch" -S=${WORKDIR}/${P} -DESCRIPTION="Console-based mouse driver" -SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/mouse/${A} - ftp://ftp.prosa.it/pub/gpm/patches/devfs.patch" - -DEPEND="virtual/glibc - >=sys-libs/ncurses-5.2 - tex? ( app-text/tetex )" - -RDEPEND="virtual/glibc >=sys-libs/ncurses-5.2" - -src_unpack() { - - unpack ${P}.tar.gz - cd ${S} - cp ${FILESDIR}/gpmInt.h . - patch -p1 < ${DISTDIR}/devfs.patch - -} - -src_compile() { - - try ./configure --prefix=/usr --sysconfdir=/etc/gpm - # without-curses is required to avoid cyclic dependencies to ncurses - 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 - -} - - - |