diff options
author | Jeroen Roovers <jer@gentoo.org> | 2015-09-11 06:59:07 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2015-09-11 06:59:07 +0200 |
commit | d42daffe5676ab927e72a49bbe950ce511f711ef (patch) | |
tree | 85777170d0fb2331b3c3b029beedbfd2b1fa8a89 /net-analyzer/pmacct/files | |
parent | d5de264d2f15eb63c7808d1eefa7e8d1e0734bb6 (diff) | |
download | gentoo-d42daffe5676ab927e72a49bbe950ce511f711ef.tar.gz gentoo-d42daffe5676ab927e72a49bbe950ce511f711ef.tar.xz |
net-analyzer/pmacct: Version bump.
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'net-analyzer/pmacct/files')
-rw-r--r-- | net-analyzer/pmacct/files/pmacct-0.12.0-gentoo.patch | 20 | ||||
-rw-r--r-- | net-analyzer/pmacct/files/pmacctd-init.d | 10 |
2 files changed, 7 insertions, 23 deletions
diff --git a/net-analyzer/pmacct/files/pmacct-0.12.0-gentoo.patch b/net-analyzer/pmacct/files/pmacct-0.12.0-gentoo.patch deleted file mode 100644 index 34efc1eda34..00000000000 --- a/net-analyzer/pmacct/files/pmacct-0.12.0-gentoo.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/configure -+++ b/configure -@@ -1103,7 +1103,7 @@ - echo $ac_n "checking whether to enable debugging compiler options""... $ac_c" 1>&6 - echo "configure:1105: checking whether to enable debugging compiler options" >&5 - # Check whether --enable-debug or --disable-debug was given. --if test "${enable_debug+set}" = set; then -+if test "${enable_debug+set}" = TODO_THIS_WILL_NEVER_BE_TRUE; then - enableval="$enable_debug" - echo "$ac_t""yes" 1>&6 - tmp_CFLAGS=`echo $CFLAGS | sed 's/O2/O0/g'` -@@ -1114,7 +1114,7 @@ - #CFLAGS="$CFLAGS -Wcast-align -Wcast-qual -Wnested-externs" - #CFLAGS="$CFLAGS -Wshadow -Wbad-function-cast -Wwrite-strings" - echo "$ac_t""no" 1>&6 -- -+ CFLAGS="$ac_save_CFLAGS" - fi - - diff --git a/net-analyzer/pmacct/files/pmacctd-init.d b/net-analyzer/pmacct/files/pmacctd-init.d index 3a0cc734991..0c3fb905bd9 100644 --- a/net-analyzer/pmacct/files/pmacctd-init.d +++ b/net-analyzer/pmacct/files/pmacctd-init.d @@ -25,13 +25,17 @@ checkconfig() { start() { checkconfig || return 1 ebegin "Starting ${SVCNAME}" - start-stop-daemon --start --pidfile "${PMACCTDPID}" --exec /usr/sbin/"${SVCNAME}" \ - -- -D -f "${PMACCTDCONF}" -F "${PMACCTDPID}" ${OPTS} + start-stop-daemon --start \ + --pidfile "${PMACCTDPID}" \ + --exec /usr/sbin/"${SVCNAME}" \ + -- -D -f "${PMACCTDCONF}" \ -F "${PMACCTDPID}" ${OPTS} eend $? } stop() { ebegin "Stopping ${SVCNAME}" - start-stop-daemon --stop --pidfile "${PMACCTDPID}" --exec /usr/sbin/"${SVCNAME}" + start-stop-daemon --stop \ + --pidfile "${PMACCTDPID}" \ + --exec /usr/sbin/"${SVCNAME}" eend $? } |