summaryrefslogtreecommitdiff
blob: 343b09890ffe885efc0f8a89bb4f2447dd46a7dd (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/nap/nap-1.5.0.ebuild,v 1.4 2002/07/26 05:05:10 gerk Exp $

S="${WORKDIR}/${P}"
DESCRIPTION="Console Napster/OpenNap client"
HOMEPAGE="http://quasar.mathstat.uottawa.ca/~selinger/nap/"
SRC_URI="http://quasar.mathstat.uottawa.ca/~selinger/nap/${P}.tar.gz"
LICENSE="as-is"

RDEPEND="virtual/glibc"
DEPEND="${RDEPEND}"
SLOT="0"
KEYWORDS="x86 ppc"

src_compile() {
	./configure --prefix=${D}/usr || die "configure problem"
	emake || die "compile problem"
}

src_install() {
	emake install || die "install problem"

	dodoc AUTHORS COPYRIGHT COPYING ChangeLog NEWS README
}