blob: 181d23a959e8fe9088fe29dd5381001f6e9790ec (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-news/nzbget/nzbget-0.1.1.ebuild,v 1.3 2004/06/25 00:26:21 agriffis Exp $
DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
HOMEPAGE="http://nzbget.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="debug"
RDEPEND="dev-libs/libxml2"
DEPEND="${RDEPEND}
dev-libs/uulib"
src_compile() {
econf `use_enable debug` || die "econf failed"
# Bad configure script is forcing CFLAGS, so we pass our own
emake CFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dobin nzbget || die "dobin failed"
dodoc CHANGELOG README TODO nzbget.cfg.example || die "dodoc failed"
}
|