summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD.M.D. Ljungmark <spider@gentoo.org>2002-06-26 03:33:40 +0000
committerD.M.D. Ljungmark <spider@gentoo.org>2002-06-26 03:33:40 +0000
commit90da87a9188ce18c8eaaada5b843e781419c7499 (patch)
treefd49b3a4f9b86249611aa0a49f25564b18ba6c94 /net-p2p/giftcurs
parentnew ebuild: a library to provide MIME feature for GNU Emacs (diff)
downloadgentoo-2-90da87a9188ce18c8eaaada5b843e781419c7499.tar.gz
gentoo-2-90da87a9188ce18c8eaaada5b843e781419c7499.tar.bz2
gentoo-2-90da87a9188ce18c8eaaada5b843e781419c7499.zip
new version, added documentation and fixed DEPENDS to DEPEND, fixed the license
Diffstat (limited to 'net-p2p/giftcurs')
-rw-r--r--net-p2p/giftcurs/ChangeLog12
-rw-r--r--net-p2p/giftcurs/files/digest-giftcurs-0.4.21
-rw-r--r--net-p2p/giftcurs/giftcurs-0.4.2.ebuild31
3 files changed, 42 insertions, 2 deletions
diff --git a/net-p2p/giftcurs/ChangeLog b/net-p2p/giftcurs/ChangeLog
index 45407874685f..3aafee5e50f0 100644
--- a/net-p2p/giftcurs/ChangeLog
+++ b/net-p2p/giftcurs/ChangeLog
@@ -1,8 +1,16 @@
# ChangeLog for net-p2p/giftcurs
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/ChangeLog,v 1.3 2002/06/25 11:22:15 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/ChangeLog,v 1.4 2002/06/26 03:33:40 spider Exp $
- 26 Jun 2002; Thilo Bangert <bangert@gentoo.org> :
+*giftcurs-0.4.2 (26 Jun 2002)
+ 26 Jun 2002; Spider <spider@gentoo.org> giftcurs-0.4.2:
+ in celebration of the move, here is 0.4.2
+ added documentation
+ added LICENSE
+ fixed typo in DEPENDS to DEPEND
+ added RDEPEND
+
+26 Jun 2002; Thilo Bangert <bangert@gentoo.org> :
moved to net-p2p - fixed depandency: net-misc/gift -> net-p2p/gift
diff --git a/net-p2p/giftcurs/files/digest-giftcurs-0.4.2 b/net-p2p/giftcurs/files/digest-giftcurs-0.4.2
new file mode 100644
index 000000000000..5905864e9549
--- /dev/null
+++ b/net-p2p/giftcurs/files/digest-giftcurs-0.4.2
@@ -0,0 +1 @@
+MD5 35fda636564a26ca28d55f15a924ce73 giFTcurs-0.4.2.tar.gz 231602
diff --git a/net-p2p/giftcurs/giftcurs-0.4.2.ebuild b/net-p2p/giftcurs/giftcurs-0.4.2.ebuild
new file mode 100644
index 000000000000..5e257cd596ba
--- /dev/null
+++ b/net-p2p/giftcurs/giftcurs-0.4.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Bart Verwilst <verwilst@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/giftcurs-0.4.2.ebuild,v 1.1 2002/06/26 03:33:40 spider Exp $
+
+S="${WORKDIR}/giFTcurs-${PV}"
+DESCRIPTION="a cursed frontend to the giFT (OpenFT) daemon"
+SRC_URI="mirror://sourceforge/giftcurs/giFTcurs-${PV}.tar.gz"
+HOMEPAGE="http://giftcurs.sourceforge.net"
+SLOT="0"
+LICENSE="GPL-2"
+
+DEPEND="virtual/glibc
+ >=sys-libs/ncurses-5.2
+ >=net-p2p/gift-0.10.0_pre020527"
+RDEPEND="${DEPEND}"
+
+src_compile() {
+ local myconf
+ cd ${S}
+ use gpm || myconf="${myconf} --disable-mouse --disable-libgpm"
+ use nls || myconf="${myconf} --disable-nls"
+ ./configure --prefix=/usr --host=${CHOST} ${myconf}
+ emake || die
+}
+
+src_install() {
+
+ einstall || die
+ dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
+}