blob: 999f65a846e18c6710161958c6b84c33fc8f2c85 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nntp/nzbget/nzbget-0.2.2.ebuild,v 1.1 2005/07/31 21:00:34 swegener 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 ~amd64"
IUSE="debug"
DEPEND="dev-libs/libxml2"
src_compile() {
econf $(use_enable debug) || die "econf failed"
# Bad configure script is forcing CFLAGS, so we pass our own
emake CFLAGS="-I. -DHAVE_CONFIG_H -D_GNU_SOURCE ${CFLAGS}" || die "emake failed"
}
src_install() {
dobin nzbget || die "dobin failed"
dodoc CHANGELOG README TODO nzbget.cfg.example || die "dodoc failed"
}
|