diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-04-17 00:23:32 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-04-17 00:23:32 +0000 |
commit | d167e3b4d2211c8382ca7d10b374c66914cbc26f (patch) | |
tree | 4796d06ee319332e35a43241a8a7eef16adb4d0e /app-misc/g15stats | |
parent | Remove old. (diff) | |
download | gentoo-2-d167e3b4d2211c8382ca7d10b374c66914cbc26f.tar.gz gentoo-2-d167e3b4d2211c8382ca7d10b374c66914cbc26f.tar.bz2 gentoo-2-d167e3b4d2211c8382ca7d10b374c66914cbc26f.zip |
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-misc/g15stats')
-rw-r--r-- | app-misc/g15stats/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/g15stats/files/g15stats-1.0.confd | 10 | ||||
-rw-r--r-- | app-misc/g15stats/files/g15stats-1.0.initd | 24 | ||||
-rw-r--r-- | app-misc/g15stats/g15stats-1.0.ebuild | 42 |
4 files changed, 6 insertions, 78 deletions
diff --git a/app-misc/g15stats/ChangeLog b/app-misc/g15stats/ChangeLog index a08d5a0535e9..45ea9e945266 100644 --- a/app-misc/g15stats/ChangeLog +++ b/app-misc/g15stats/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/g15stats -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/g15stats/ChangeLog,v 1.10 2013/11/03 12:09:00 polynomial-c Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/g15stats/ChangeLog,v 1.11 2015/04/17 00:23:32 mrueg Exp $ + + 17 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -files/g15stats-1.0.confd, + -files/g15stats-1.0.initd, -g15stats-1.0.ebuild: + Remove old. 03 Nov 2013; Lars Wendler <polynomial-c@gentoo.org> metadata.xml: Added myself as maintainer. diff --git a/app-misc/g15stats/files/g15stats-1.0.confd b/app-misc/g15stats/files/g15stats-1.0.confd deleted file mode 100644 index 85895706fde9..000000000000 --- a/app-misc/g15stats/files/g15stats-1.0.confd +++ /dev/null @@ -1,10 +0,0 @@ -# /etc/conf.d/g15stats: Configuration for the G15 stats - -#Gather statistics from named interface (ie eth0) -#Network Screen displays Total bytes In/Out, history graph, Peak speed. -IFACE="eth0" - -#-nsa -#Scale network graphs against highest speed recorded. The -#default is to scale against the highest peak in the current graph. -EXTRA_OPTS=""
\ No newline at end of file diff --git a/app-misc/g15stats/files/g15stats-1.0.initd b/app-misc/g15stats/files/g15stats-1.0.initd deleted file mode 100644 index 2e69478398ea..000000000000 --- a/app-misc/g15stats/files/g15stats-1.0.initd +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/g15stats/files/g15stats-1.0.initd,v 1.1 2008/07/06 11:21:48 loki_val Exp $ - -PIDFILE=/var/run/${SVCNAME}.pid - -depend() { - need g15daemon - after xdm -} - -start() { - ebegin "Starting ${SVCNAME}" - start-stop-daemon --start --background --make-pidfile --pidfile ${PIDFILE} --exec \ - /usr/bin/g15stats -- --interface "${IFACE}" "${EXTRA_OPTS}" - eend $? -} - -stop() { - ebegin "Stoping ${SVCNAME}" - start-stop-daemon --stop --pidfile ${PIDFILE} --name g15stats - eend $? -} diff --git a/app-misc/g15stats/g15stats-1.0.ebuild b/app-misc/g15stats/g15stats-1.0.ebuild deleted file mode 100644 index 599144767133..000000000000 --- a/app-misc/g15stats/g15stats-1.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/g15stats/g15stats-1.0.ebuild,v 1.5 2012/05/03 19:41:35 jdhore Exp $ - -DESCRIPTION="CPU, memory, swap, network stats for G15 Keyboard" -HOMEPAGE="http://g15daemon.sourceforge.net/" -SRC_URI="mirror://sourceforge/g15daemon/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=">=app-misc/g15daemon-1.9.0 - dev-libs/libg15 - dev-libs/libg15render - sys-libs/zlib - gnome-base/libgtop" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_compile() { - export CPPFLAGS=$CFLAGS - econf || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - rm "$D"/usr/share/doc/${P}/{COPYING,NEWS} - - newconfd "${FILESDIR}/${P}.confd" ${PN} - newinitd "${FILESDIR}/${P}.initd" ${PN} - - prepalldocs -} - -pkg_postinst() { - elog "Remember to set the interface you want monitored in" - elog "/etc/conf.d/g15stats" -} |