summaryrefslogtreecommitdiff
path: root/net-nntp/nzbget/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-03-03 13:42:34 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-03-03 13:42:34 +0000
commit066d27181e9a797ad9f8fc43b49fc9a10ff2f707 (patch)
tree3cb05783d73b2c33589ba305144a31c718e123cd /net-nntp/nzbget/files
parent16449a80e28af2209916cc66d19c9a44ca2b90d9 (diff)
gentoo resync : 03.03.2019
Diffstat (limited to 'net-nntp/nzbget/files')
-rw-r--r--net-nntp/nzbget/files/nzbget-14.0_pre1145-tinfo.patch18
-rw-r--r--net-nntp/nzbget/files/nzbget.initd28
2 files changed, 0 insertions, 46 deletions
diff --git a/net-nntp/nzbget/files/nzbget-14.0_pre1145-tinfo.patch b/net-nntp/nzbget/files/nzbget-14.0_pre1145-tinfo.patch
deleted file mode 100644
index e6cd13f6ffc1..000000000000
--- a/net-nntp/nzbget/files/nzbget-14.0_pre1145-tinfo.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -46,6 +46,7 @@
- AC_PATH_PROG(MAKE, make, $FALSE)
- AC_PROG_INSTALL
-
-+PKG_PROG_PKG_CONFIG()
-
- dnl
- dnl Do all tests with c++ compiler.
-@@ -291,6 +292,7 @@
- if test "$FOUND" = "no"; then
- AC_MSG_ERROR([Couldn't find curses headers (ncurses.h or curses.h)])
- fi
-+ PKG_CHECK_MODULES(ncurses,ncurses,LIBS="$LIBS $ncurses_LIBS",)
- AC_SEARCH_LIBS([refresh], [ncurses curses],,
- AC_ERROR([Couldn't find curses library]))
- else
diff --git a/net-nntp/nzbget/files/nzbget.initd b/net-nntp/nzbget/files/nzbget.initd
deleted file mode 100644
index 06f75596e438..000000000000
--- a/net-nntp/nzbget/files/nzbget.initd
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-extra_started_commands="reload"
-
-start() {
- ebegin "Starting ${RC_SVCNAME}"
- checkpath -d -m 0755 -o "${NZBGET_USER}":"${NZBGET_GROUP}" /run/nzbget
- start-stop-daemon --quiet --start --user "${NZBGET_USER}" \
- --group "${NZBGET_GROUP}" --exec /usr/bin/nzbget -- \
- --configfile "${NZBGET_CONFIGFILE}" --daemon \
- ${NZBGET_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${RC_SVCNAME}"
- start-stop-daemon --stop --exec /usr/bin/nzbget -- \
- --configfile "${NZBGET_CONFIGFILE}" --daemon \
- ${NZBGET_OPTS}
-}
-
-reload() {
- ebegin "Reloading ${RC_SVCNAME}"
- /usr/bin/nzbget --configfile "${NZBGET_CONFIGFILE}" --reload >/dev/null
- eend $?
-}