diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2002-11-12 10:57:25 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2002-11-12 10:57:25 +0000 |
commit | 21013931fc68db551cb8e48fbb98ad444c109b86 (patch) | |
tree | bb97f260f08d4afc296cd8c4e9ceafe1d0e85f78 /net-p2p/giftcurs | |
parent | version bump (diff) | |
download | gentoo-2-21013931fc68db551cb8e48fbb98ad444c109b86.tar.gz gentoo-2-21013931fc68db551cb8e48fbb98ad444c109b86.tar.bz2 gentoo-2-21013931fc68db551cb8e48fbb98ad444c109b86.zip |
version bump
Diffstat (limited to 'net-p2p/giftcurs')
-rw-r--r-- | net-p2p/giftcurs/ChangeLog | 5 | ||||
-rw-r--r-- | net-p2p/giftcurs/files/digest-giftcurs-0.5.4 | 1 | ||||
-rw-r--r-- | net-p2p/giftcurs/giftcurs-0.5.4.ebuild | 34 |
3 files changed, 39 insertions, 1 deletions
diff --git a/net-p2p/giftcurs/ChangeLog b/net-p2p/giftcurs/ChangeLog index e1653e5e7830..60f240c28e1a 100644 --- a/net-p2p/giftcurs/ChangeLog +++ b/net-p2p/giftcurs/ChangeLog @@ -1,6 +1,9 @@ # 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.9 2002/10/12 03:27:51 jmorgan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/ChangeLog,v 1.10 2002/11/12 10:57:25 leonardop Exp $ + +*giftcurs-0.5.4 (12 Nov 2002) + 12 Nov 2002; L. Boshell <leonardop@gentoo.org> : Version bump. *giftcurs-0.5.* (25 Sep 2002) diff --git a/net-p2p/giftcurs/files/digest-giftcurs-0.5.4 b/net-p2p/giftcurs/files/digest-giftcurs-0.5.4 new file mode 100644 index 000000000000..0d883c4f567c --- /dev/null +++ b/net-p2p/giftcurs/files/digest-giftcurs-0.5.4 @@ -0,0 +1 @@ +MD5 2348fa746e4765a3c8a80174333509d2 giFTcurs-0.5.4.tar.gz 294620 diff --git a/net-p2p/giftcurs/giftcurs-0.5.4.ebuild b/net-p2p/giftcurs/giftcurs-0.5.4.ebuild new file mode 100644 index 000000000000..e6b305729e26 --- /dev/null +++ b/net-p2p/giftcurs/giftcurs-0.5.4.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.4.ebuild,v 1.1 2002/11/12 10:57:25 leonardop 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-0.10.0_pre020705" + +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 +} |