blob: e83c63aae50b704813756c98457547cd1d53e02d (
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
30
31
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/mutella/mutella-0.4.ebuild,v 1.1 2002/07/09 21:25:47 sunflare Exp $
S=${WORKDIR}/${P}
DESCRIPTION="mutella is a text-mode gnutella client."
SRC_URI="http://telia.dl.sourceforge.net/sourceforge/mutella/${P}.tar.gz"
HOMEPAGE="http://mutella.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="virtual/glibc
>=sys-libs/readline-4.2"
RDEPEND=${DEPEND}
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
emake || die "compile problem"
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog COPYING INSTALL LICENSE KNOWN-BUGS README TODO
}
|