summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Portnoy <avenj@gentoo.org>2003-03-01 22:40:28 +0000
committerJon Portnoy <avenj@gentoo.org>2003-03-01 22:40:28 +0000
commitf6e12b230d2b54b9ba8d26adeafea96629398278 (patch)
tree973c88dbca10d6fb1dc3f6f1b8ae162f7bc99a71 /net-p2p/giftcurs
parentbump to fix gps enabling (diff)
downloadhistorical-f6e12b230d2b54b9ba8d26adeafea96629398278.tar.gz
historical-f6e12b230d2b54b9ba8d26adeafea96629398278.tar.bz2
historical-f6e12b230d2b54b9ba8d26adeafea96629398278.zip
Latest giFTcurs.
Diffstat (limited to 'net-p2p/giftcurs')
-rw-r--r--net-p2p/giftcurs/ChangeLog7
-rw-r--r--net-p2p/giftcurs/files/digest-giftcurs-0.5.61
-rw-r--r--net-p2p/giftcurs/giftcurs-0.5.6.ebuild34
3 files changed, 41 insertions, 1 deletions
diff --git a/net-p2p/giftcurs/ChangeLog b/net-p2p/giftcurs/ChangeLog
index eb5d50ba22a8..b7f9867db70c 100644
--- a/net-p2p/giftcurs/ChangeLog
+++ b/net-p2p/giftcurs/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-p2p/giftcurs
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/ChangeLog,v 1.16 2003/02/12 08:39:08 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/ChangeLog,v 1.17 2003/03/01 22:40:28 avenj Exp $
+
+*giftcurs-0.5.6 (03 March 2003)
+
+ 03 March 2003; Jon Portnoy <avenj@gentoo.org> giftcurs-0.5.6.ebuild :
+ Version bump, latest giFTcurs.
14 Jan 2002; Jon Nall <nall@gentoo.org> giftcurs-0.5.5.ebuild :
added ~ppc
diff --git a/net-p2p/giftcurs/files/digest-giftcurs-0.5.6 b/net-p2p/giftcurs/files/digest-giftcurs-0.5.6
new file mode 100644
index 000000000000..b621d0a7d6c0
--- /dev/null
+++ b/net-p2p/giftcurs/files/digest-giftcurs-0.5.6
@@ -0,0 +1 @@
+MD5 8824d2a0f92de97c3eeefbb8ac9c4422 giFTcurs-0.5.6.tar.gz 341415
diff --git a/net-p2p/giftcurs/giftcurs-0.5.6.ebuild b/net-p2p/giftcurs/giftcurs-0.5.6.ebuild
new file mode 100644
index 000000000000..a7c04fbc19aa
--- /dev/null
+++ b/net-p2p/giftcurs/giftcurs-0.5.6.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/giftcurs-0.5.6.ebuild,v 1.1 2003/03/01 22:40:28 avenj Exp $
+
+MY_P="giFTcurs-${PV}"
+S="${WORKDIR}/${MY_P}"
+DESCRIPTION="A ncurses frontend to the giFT (OpenFT) daemon"
+SRC_URI="mirror://sourceforge/giftcurs/${MY_P}.tar.gz"
+HOMEPAGE="http://giftcurs.sourceforge.net/"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE="gpm nls"
+KEYWORDS="~x86 ~sparc ~ppc"
+
+DEPEND="virtual/glibc
+ >=sys-libs/ncurses-5.2
+ >=net-p2p/gift-cvs-0.10.0"
+
+src_compile() {
+ local myconf=""
+
+ use gpm || myconf="${myconf} --disable-mouse --disable-libgpm"
+ use nls || myconf="${myconf} --disable-nls"
+
+ econf $myconf || die "./configure failed"
+
+ emake || die "Compilation failed"
+}
+
+src_install() {
+ einstall || die "Installation failed"
+
+ dodoc ABOUT-NLS AUTHORS COPYING ChangeLog NEWS README THANKS TODO
+}