diff options
Diffstat (limited to 'net-p2p/giftcurs/giftcurs-0.5.6.ebuild')
-rw-r--r-- | net-p2p/giftcurs/giftcurs-0.5.6.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
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 +} |