View | Details | Raw Unified | Return to bug 200457
Collapse All | Expand All

(-)Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	nzbget
4
PORTNAME=	nzbget
5
PORTVERSION=	14.2
5
PORTVERSION=	15.0
6
CATEGORIES=	news
6
CATEGORIES=	news
7
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION}
7
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION}
8
8
Lines 30-36 Link Here
30
OPTIONS_DEFINE=	7Z PYTHON RAR DOCS
30
OPTIONS_DEFINE=	7Z PYTHON RAR DOCS
31
OPTIONS_SINGLE=	TLSLIB
31
OPTIONS_SINGLE=	TLSLIB
32
OPTIONS_SINGLE_TLSLIB=	GNUTLS OPENSSL
32
OPTIONS_SINGLE_TLSLIB=	GNUTLS OPENSSL
33
OPTIONS_DEFAULT=	GNUTLS PAR PYTHON RAR
33
OPTIONS_DEFAULT=	GNUTLS PAR PYTHON RAR 7Z
34
7Z_DESC=	Support extraction of 7z archives
34
7Z_DESC=	Support extraction of 7z archives
35
PYTHON_DESC=	Support for python post-processing scripts
35
PYTHON_DESC=	Support for python post-processing scripts
36
RAR_DESC=	Support extraction of rar archives
36
RAR_DESC=	Support extraction of rar archives
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (nzbget-14.2.tar.gz) = bb24afb47dc01766c5e5c02d7565190082c6e13ffed565969a2ec52e21104677
1
SHA256 (nzbget-15.0.tar.gz) = 3ef13f3e5917e4cda19c4fc0cd37e79967a19b4e3448c239ff24e37712a6cc0a
2
SIZE (nzbget-14.2.tar.gz) = 1332612
2
SIZE (nzbget-15.0.tar.gz) = 1466814
(-)files/nzbget.in (-4 / +6 lines)
Lines 21-29 Link Here
21
: ${nzbget_enable:=NO}
21
: ${nzbget_enable:=NO}
22
22
23
start_cmd="${name}_start"
23
start_cmd="${name}_start"
24
status_cmd="${command} status"
24
status_cmd="${command} -L S"
25
stop_cmd="${name}_stop"
25
stop_cmd="${name}_stop"
26
command=%%PREFIX%%/sbin/nzbgetd
26
command=%%PREFIX%%/bin/nzbget
27
27
28
nzbget_start()
28
nzbget_start()
29
{
29
{
Lines 31-43 Link Here
31
	# artificial sleep because it doesnt want to start
31
	# artificial sleep because it doesnt want to start
32
	# after a restart without it
32
	# after a restart without it
33
	sleep .5
33
	sleep .5
34
	${command} start
34
	${command} -D
35
}
35
}
36
36
37
nzbget_stop()
37
nzbget_stop()
38
{
38
{
39
	echo "Stopping ${name}."
39
	echo "Stopping ${name}."
40
	${command} stop
40
	${command} -Q
41
	# artificial sleep because stop is backgrounded
42
	sleep 3
41
}
43
}
42
44
43
run_rc_command "$1"
45
run_rc_command "$1"
(-)pkg-plist (-1 lines)
Lines 1-6 Link Here
1
bin/nzbget
1
bin/nzbget
2
@sample etc/nzbget.conf.sample
2
@sample etc/nzbget.conf.sample
3
sbin/nzbgetd
4
@comment %%PORTDOCS%%%%DOCSDIR%%/COPYING
3
@comment %%PORTDOCS%%%%DOCSDIR%%/COPYING
5
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
4
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
6
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
5
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog

Return to bug 200457