commit: f448a41b22fab9ad8d98526ab205c8623e3941b8 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com> AuthorDate: Tue Jun 12 17:52:50 2018 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Tue Jun 12 21:37:26 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f448a41b
x11-plugins/wmnet: EAPI7, improve ebuild, use HTTPs x11-plugins/wmnet/wmnet-1.06-r2.ebuild | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/x11-plugins/wmnet/wmnet-1.06-r2.ebuild b/x11-plugins/wmnet/wmnet-1.06-r2.ebuild new file mode 100644 index 00000000000..f55209896cb --- /dev/null +++ b/x11-plugins/wmnet/wmnet-1.06-r2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="WMnet is a dock.app network monitor" +HOMEPAGE="https://www.dockapps.net/wmnet" +SRC_URI="https://www.dockapps.net/download/${P}.tar.gz + mirror://gentoo/${P}-misc.patch.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~sparc ~alpha ~amd64 ~ppc" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext" +DEPEND="${RDEPEND} + x11-base/xorg-proto + x11-misc/imake + app-text/rman" + +PATCHES=( "${WORKDIR}"/${P}-misc.patch ) + +src_compile() { + xmkmf || die "xmkmf failed." + emake CDEBUGFLAGS="${CFLAGS}" LDOPTIONS="${LDFLAGS}" +} + +src_install() { + dobin wmnet + newman wmnet.man wmnet.1 + dodoc README Changelog +}
