diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2018-07-22 19:42:31 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2018-08-02 22:15:41 +0200 |
commit | b567e9b46c456afb8236de4c07982bce71d892a6 (patch) | |
tree | c74fd0d75f1a7a59f5ab04a754480a621a065e5f /x11-plugins/wmmon+smp/wmmon+smp-1.0-r3.ebuild | |
parent | x11-plugins/wmmisc: EAPI7, improve ebuild (diff) | |
download | gentoo-b567e9b46c456afb8236de4c07982bce71d892a6.tar.gz gentoo-b567e9b46c456afb8236de4c07982bce71d892a6.tar.bz2 gentoo-b567e9b46c456afb8236de4c07982bce71d892a6.zip |
x11-plugins/wmmon+smp: EAPI7, improve ebuild
Diffstat (limited to 'x11-plugins/wmmon+smp/wmmon+smp-1.0-r3.ebuild')
-rw-r--r-- | x11-plugins/wmmon+smp/wmmon+smp-1.0-r3.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/x11-plugins/wmmon+smp/wmmon+smp-1.0-r3.ebuild b/x11-plugins/wmmon+smp/wmmon+smp-1.0-r3.ebuild new file mode 100644 index 000000000000..34299e08f1d1 --- /dev/null +++ b/x11-plugins/wmmon+smp/wmmon+smp-1.0-r3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Dockapp CPU monitor resembling Xosview, support for smp" +HOMEPAGE="http://www.ne.jp/asahi/linux/timecop/" +SRC_URI="http://www.ne.jp/asahi/linux/timecop/software/wmmon+smp.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc64 ~x86" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +S="${WORKDIR}/wmmon.app/wmmon" + +PATCHES=( "${FILESDIR}"/${P}-list.patch ) + +src_prepare() { + tc-export CC + # Respect LDFLAGS, see bug #335047 + sed \ + -e 's/cc -o/${CC} ${LDFLAGS} -o/' \ + -e 's/cc -c/${CC} ${CFLAGS} -c/' \ + -i Makefile || die + + cd "${WORKDIR}"/wmmon.app || die + default +} + +src_install () { + newbin wmmon wmmon+smp + dodoc ../README +} |