x11-plugins/wmifinfo: add EAPI7 ebuild
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sun, 22 Jul 2018 12:55:10 +0000 (14:55 +0200)
committerBernard Cafarelli <voyageur@gentoo.org>
Thu, 26 Jul 2018 20:30:52 +0000 (22:30 +0200)
x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild [new file with mode: 0644]

diff --git a/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild b/x11-plugins/wmifinfo/wmifinfo-0.10-r1.ebuild
new file mode 100644 (file)
index 0000000..98816a1
--- /dev/null
@@ -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
+}