diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-11-30 01:22:59 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-11-30 01:22:59 +0000 |
commit | 35ec493c13d50dee5d20427275708bfeb41e649f (patch) | |
tree | 2977f753cd7bbf6353ccc63c3e9efe65d6cfd50c /net-p2p/giftcurs | |
parent | Changed mkdir ${D} to dodir ${D} (diff) | |
download | gentoo-2-35ec493c13d50dee5d20427275708bfeb41e649f.tar.gz gentoo-2-35ec493c13d50dee5d20427275708bfeb41e649f.tar.bz2 gentoo-2-35ec493c13d50dee5d20427275708bfeb41e649f.zip |
ok, I got this letter from somone who appears to be related to the
project, yet doesnt appear in its ChangeLog.
Subject: giFTcurs gentoo package
From: Josh Guilfoyle <jasta@gotlinux.org>
If you aren't going to keep up to date with giFTcurs releases, I strongly
suggest you remove the package from gentoo. In fact, consider this a
request to remove the package.
----
This person is not related to the giFTcurs project, and only does it for
the kick of bashing Gentoo.
Am I naive who actually believe people ought to be polite?
BAH!
Diffstat (limited to 'net-p2p/giftcurs')
-rw-r--r-- | net-p2p/giftcurs/ChangeLog | 12 | ||||
-rw-r--r-- | net-p2p/giftcurs/files/digest-giftcurs-0.5.5 | 1 | ||||
-rw-r--r-- | net-p2p/giftcurs/giftcurs-0.5.5.ebuild | 34 |
3 files changed, 46 insertions, 1 deletions
diff --git a/net-p2p/giftcurs/ChangeLog b/net-p2p/giftcurs/ChangeLog index 60f240c28e1a..12a9166c65bc 100644 --- a/net-p2p/giftcurs/ChangeLog +++ b/net-p2p/giftcurs/ChangeLog @@ -1,7 +1,17 @@ # 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.10 2002/11/12 10:57:25 leonardop Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/ChangeLog,v 1.11 2002/11/30 01:22:59 spider Exp $ + +*giftcurs-0.5.5 (30 Nov 2002) + + 30 Nov 2002; Spider <spider@gentoo.org> giftcurs-0.5.5.ebuild : + After a very impolite letter from "Josh Guilfoyle <jasta@gotlinux.org>" about + me not updating the package in four days after its release, requesting that + I immidately remove it from Gentoo, I had a chat with weinholt, who actually + handles the releases. package is updated, all should be ok. + + *giftcurs-0.5.4 (12 Nov 2002) 12 Nov 2002; L. Boshell <leonardop@gentoo.org> : Version bump. diff --git a/net-p2p/giftcurs/files/digest-giftcurs-0.5.5 b/net-p2p/giftcurs/files/digest-giftcurs-0.5.5 new file mode 100644 index 000000000000..bcbdc9b2672a --- /dev/null +++ b/net-p2p/giftcurs/files/digest-giftcurs-0.5.5 @@ -0,0 +1 @@ +MD5 75116936dea84777809038d03eca8d57 giFTcurs-0.5.5.tar.gz 298115 diff --git a/net-p2p/giftcurs/giftcurs-0.5.5.ebuild b/net-p2p/giftcurs/giftcurs-0.5.5.ebuild new file mode 100644 index 000000000000..aed217c0a72f --- /dev/null +++ b/net-p2p/giftcurs/giftcurs-0.5.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 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.5.ebuild,v 1.1 2002/11/30 01:22:59 spider Exp $ + +MY_P="giFTcurs-${PV}" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="A cursed 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 ~sparc64" + +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 +} |