blob: 2629b6ec119e460f7470914176794559cb8331a4 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nntp/hellanzb/hellanzb-0.13-r6.ebuild,v 1.1 2008/06/18 14:05:56 yngwin Exp $
inherit distutils eutils
DESCRIPTION="Retrieves and processes .nzb files"
HOMEPAGE="http://www.hellanzb.com/"
SRC_URI="http://www.hellanzb.com/distfiles/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="libnotify ssl"
RDEPEND=">=dev-python/twisted-2.0
dev-python/twisted-web
|| ( app-arch/unrar
app-arch/rar )
app-arch/par2cmdline
ssl? ( dev-python/pyopenssl )
libnotify? ( dev-python/notify-python )"
DEPEND=""
DOCS="CHANGELOG CREDITS PKG-INFO README"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-datafiles.patch"
epatch "${FILESDIR}/${P}-Fix_conf_file_search_path.patch"
epatch "${FILESDIR}/${P}-Choose_interface_to_bind_on.patch"
epatch "${FILESDIR}/${P}-fix_multiples_hosts.diff"
epatch "${FILESDIR}/${P}-strip-extra-space-in-group.patch"
}
src_install() {
distutils_src_install
newconfd "${FILESDIR}/hellanzb.conf" hellanzb
newinitd "${FILESDIR}/hellanzb.init" hellanzb
insinto etc
doins etc/hellanzb.conf.sample
}
pkg_postinst() {
elog "You can start hellanzb in the background automatically by using"
elog "the init-script. To do this, add it to your default runlevel:"
elog ""
elog " rc-update add hellanzb default"
elog ""
elog "Use this command to start the daemon now:"
elog ""
elog " /etc/init.d/hellanzb start"
elog ""
elog "You will have to config /etc/conf.d/hellanzb before the init-script"
elog "will work. It is recommended that you change the user under which"
elog "the daemon will run."
}
|