commit: e6f4fc0e5f9cf31650a3dfdab40ed54af58f14f3 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com> AuthorDate: Sun Jul 22 12:55:10 2018 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Thu Jul 26 20:30:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6f4fc0e
x11-plugins/wmifinfo: add EAPI7 ebuild x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild b/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild new file mode 100644 index 00000000000..98816a1f878 --- /dev/null +++ b/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="a dockapp for monitoring network interfaces" +HOMEPAGE="https://www.dockapps.net/wmifinfo" +SRC_URI="https://www.dockapps.net/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +S="${WORKDIR}/dockapps" + +src_compile() { + emake CC="$(tc-getCC)" LD="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +src_install() { + emake DESTDIR="${D}" PREFIX=/usr install + dodoc README Changelog +}
