blob: 65b2ac1dd280da365f7cd0d16211a443ec9f2a08 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# /space/gentoo/cvsroot/gentoo-x86/net-p2p/gift/gift-0.10.0_pre020625.ebuild,v 1.1 2002/06/26 10:11:36 bangert Exp
S=${WORKDIR}/giFT
DESCRIPTION="Lets you connect to OpenFT, a decentralised p2p network like FastTrack"
SRC_URI="http://dshieldpy.sourceforge.net/${P}.tgz"
HOMEPAGE="http://gift.sourceforge.net"
SLOT="0"
DEPENDS="virtual/glibc
>=sys-libs/zlib-1.1.4"
src_compile() {
cd ${S}
./autogen.sh --prefix=/usr --host=${CHOST} || die
emake || die
}
src_install() {
einstall plugindir=${D}/usr/lib/giFT giftdatadir=${D}/usr/share/giFT giftperldir=${D}/usr/bin || die
}
|