summaryrefslogtreecommitdiff
blob: 81803fe3fd9b7900bad02d1c8484d3f5ff802ae0 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/btpd/btpd-0.9.ebuild,v 1.1 2006/06/21 01:18:42 metalgod Exp $

DESCRIPTION="BTPD is a bittorrent client consisting of a daemon and client commands"
HOMEPAGE="http://www.murmeldjur.se/btpd/"
SRC_URI="http://www.murmeldjur.se/btpd/${P}.tar.gz http://people.su.se/~rnyberg/btpd/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

RDEPEND="net-misc/curl
		dev-libs/openssl
		dev-libs/libevent"
DEPEND="${RDEPEND}"

src_compile() {
	econf || die "econf failed"
	emake || die "econf failed"
}

src_install() {
	make DESTDIR=${D} install || die "make install failed"
	dodoc CHANGES COPYRIGHT README
}