summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2018-01-06 02:34:14 +0300
committerMikle Kolyada <zlogene@gentoo.org>2018-01-06 02:34:14 +0300
commit397408cace8b1c17e669506d3cfff4d5c1eb7aa9 (patch)
tree41894a9a15832d4b5abb48eff3b931a0899668c7 /x11-plugins
parentx11-plugins/wmwave: remove last rited package (bug #639914) (diff)
downloadgentoo-397408cace8b1c17e669506d3cfff4d5c1eb7aa9.tar.gz
gentoo-397408cace8b1c17e669506d3cfff4d5c1eb7aa9.tar.bz2
gentoo-397408cace8b1c17e669506d3cfff4d5c1eb7aa9.zip
x11-plugins/wmsysmon: Drop old (bug #639914)
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/wmsysmon/Manifest2
-rw-r--r--x11-plugins/wmsysmon/metadata.xml4
-rw-r--r--x11-plugins/wmsysmon/wmsysmon-0.7.7.ebuild49
3 files changed, 0 insertions, 55 deletions
diff --git a/x11-plugins/wmsysmon/Manifest b/x11-plugins/wmsysmon/Manifest
index 1ed41e87101f..12e312cd5b7f 100644
--- a/x11-plugins/wmsysmon/Manifest
+++ b/x11-plugins/wmsysmon/Manifest
@@ -1,3 +1 @@
-DIST wmsysmon-0.7.7-s4t4n.patch.bz2 8547 BLAKE2B 7c68524981336630b70a16e4e2935790dc246e40c7c16cedf2487e5145cebec797569042b5234b334988cec836878625ce631de4ff9cb8588e921a7d20c5d904 SHA512 fbf43af697313c1f2c8c5d373b636b92b87140979c47037c214b2af8e0e94faa1df610e9fb94e677bfd6de94320e1e161ac1b1afbfb665fd7e86849ee93d8e1e
-DIST wmsysmon-0.7.7.tar.gz 20866 BLAKE2B ddccccf05a5d54214336f58fe3c4cf8631da11098a2a8a42677b51e20414fbeb9dd4a8ec02c92cd8933635973470d56c2837b6ab41bb07348f39946f8b94dcfa SHA512 6f472d132c7b5263c4b62e0972653ceee59743c4e292c0bdd95194e84373f4e7888311b40083691ab5b736c0ba292672d8eb306a220e95d356dd95b6b8519c0c
DIST wmsysmon-0.7.8.tar.gz 23533 BLAKE2B 830edc78222e8997c6ee23bdd9fcb28729e9b80d92b07f70a53d841065b7377f5c450024c511b4faa92043bd45aa0cc92e89ff900d7d4a53d3c9f4b57b4e6e7e SHA512 b1afd176851e8f89896e39b55d24d6efeb97eb5fdbb9c181cb030320445f1d8b22d31073edc615e6b47b91fd133b381f00b612901c8b312e7da404a4746bb97c
diff --git a/x11-plugins/wmsysmon/metadata.xml b/x11-plugins/wmsysmon/metadata.xml
index efaca79dc2c7..51b9fadadcf9 100644
--- a/x11-plugins/wmsysmon/metadata.xml
+++ b/x11-plugins/wmsysmon/metadata.xml
@@ -5,10 +5,6 @@
<email>voyageur@gentoo.org</email>
<name>Bernard Cafarelli</name>
</maintainer>
-<use>
- <flag name="high-ints">Enable support for monitoring 24 interrupts. Useful
- on SMP machines</flag>
-</use>
<upstream>
<remote-id type="github">voyageur/wmsysmon</remote-id>
</upstream>
diff --git a/x11-plugins/wmsysmon/wmsysmon-0.7.7.ebuild b/x11-plugins/wmsysmon/wmsysmon-0.7.7.ebuild
deleted file mode 100644
index 8da4a8b908ed..000000000000
--- a/x11-plugins/wmsysmon/wmsysmon-0.7.7.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils
-
-IUSE="high-ints"
-DESCRIPTION="a dockapp to monitor: CPU, Memory, Uptime, IRQs, Paging and Swap activity"
-SRC_URI="http://www.gnugeneration.com/software/wmsysmon/src/${P}.tar.gz
- mirror://gentoo/${P}-s4t4n.patch.bz2"
-HOMEPAGE="http://www.gnugeneration.com/software/wmsysmon/"
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
-
-RDEPEND="x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXpm"
-DEPEND="${RDEPEND}
- x11-proto/xextproto
- >=sys-apps/sed-4.1.5-r1"
-
-src_unpack()
-{
- unpack ${A}
- cd "${S}"
-
- # bug 48851
- epatch "${WORKDIR}"/${P}-s4t4n.patch
-
- # Monitor all the 24 interrupts on alpha and x86 SMP machines
- if use alpha || use high-ints; then
- cd src
- epatch "${FILESDIR}"/${PN}-high-ints.patch
- fi
-
- # Do no strip binaries during compilation, see bug #252113
- sed -i 's/LDFLAGS += -lXpm -lXext -lX11 -lm -s/LDFLAGS += -lXpm -lXext -lX11 -lm/' "src/Makefile"
-}
-
-src_compile()
-{
- GENTOO_CFLAGS="${CFLAGS}" make -C src
-}
-
-src_install ()
-{
- dobin src/wmsysmon
- dodoc ChangeLog README
-}