summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Portnoy <avenj@gentoo.org>2003-05-05 19:14:18 +0000
committerJon Portnoy <avenj@gentoo.org>2003-05-05 19:14:18 +0000
commitfce87499ea359680c34991e5d586742e0da7b2b4 (patch)
tree8c27d7eddc3fe93c0dea7bd8cee8cd2145f9d967 /net-p2p/giftcurs
parentVersion bump (diff)
downloadgentoo-2-fce87499ea359680c34991e5d586742e0da7b2b4.tar.gz
gentoo-2-fce87499ea359680c34991e5d586742e0da7b2b4.tar.bz2
gentoo-2-fce87499ea359680c34991e5d586742e0da7b2b4.zip
Version bump
Diffstat (limited to 'net-p2p/giftcurs')
-rw-r--r--net-p2p/giftcurs/ChangeLog7
-rw-r--r--net-p2p/giftcurs/Manifest4
-rw-r--r--net-p2p/giftcurs/files/digest-giftcurs-0.5.71
-rw-r--r--net-p2p/giftcurs/giftcurs-0.5.7.ebuild34
4 files changed, 43 insertions, 3 deletions
diff --git a/net-p2p/giftcurs/ChangeLog b/net-p2p/giftcurs/ChangeLog
index b7f9867db70c..a7b3006dd641 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.17 2003/03/01 22:40:28 avenj Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/ChangeLog,v 1.18 2003/05/05 19:14:06 avenj Exp $
+
+*giftcurs-0.5.7 (05 May 2003)
+
+ 05 May 2003; Jon Portnoy <avenj@gentoo.org> giftcurs-0.5.7.ebuild :
+ Version bump.
*giftcurs-0.5.6 (03 March 2003)
diff --git a/net-p2p/giftcurs/Manifest b/net-p2p/giftcurs/Manifest
index 0685b92af41e..fff3174f09cc 100644
--- a/net-p2p/giftcurs/Manifest
+++ b/net-p2p/giftcurs/Manifest
@@ -1,6 +1,6 @@
-MD5 b99c7c6fe3cc0db8dba7464bcc5178f5 ChangeLog 2296
+MD5 52df4abc370f668e2d743e6ab7bcc527 ChangeLog 2414
MD5 7f6dd7ce2f85dcda67320c864cfefa53 giftcurs-0.5.6.ebuild 932
-MD5 377bd67570a29748bd025dc4276a7868 giftcurs-0.5.7.ebuild 832
+MD5 67b8961dc237f93ee1723c6df1715686 giftcurs-0.5.7.ebuild 933
MD5 4da4d29ec5ee763df0fb32fd716b6b68 giftcurs-0.5.5.ebuild 931
MD5 03d82e1ba45ea1790eee0dbd11b2f5fa files/digest-giftcurs-0.5.6 66
MD5 f44a2c30bba152c13caeb74787a75baf files/digest-giftcurs-0.5.7 66
diff --git a/net-p2p/giftcurs/files/digest-giftcurs-0.5.7 b/net-p2p/giftcurs/files/digest-giftcurs-0.5.7
new file mode 100644
index 000000000000..9562924759a1
--- /dev/null
+++ b/net-p2p/giftcurs/files/digest-giftcurs-0.5.7
@@ -0,0 +1 @@
+MD5 b9a30012f1083a99d5f34d384fa5ea0d giFTcurs-0.5.7.tar.gz 347219
diff --git a/net-p2p/giftcurs/giftcurs-0.5.7.ebuild b/net-p2p/giftcurs/giftcurs-0.5.7.ebuild
new file mode 100644
index 000000000000..f5e290c3204b
--- /dev/null
+++ b/net-p2p/giftcurs/giftcurs-0.5.7.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.7.ebuild,v 1.1 2003/05/05 19:14:06 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
+}