x11-plugins/wmsysmon: Drop old (bug #639914)

Package-Manager: Portage-2.3.13, Repoman-2.3.3
This commit is contained in:
Mikle Kolyada
2018-01-06 02:34:14 +03:00
parent a06ff19945
commit 397408cace
3 changed files with 0 additions and 55 deletions

View File

@@ -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

View File

@@ -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>

View File

@@ -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
}