blob: 51837f672fb8b11f15bf8845358bacbeba6b559f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# 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.1.ebuild,v 1.2 2002/06/25 11:22:15 bangert 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"
DEPENDS="virtual/glibc
>=sys-libs/ncurses-5.2
>=net-p2p/gift-0.10.0_pre020527"
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
}
|