From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 80D7B138334 for ; Thu, 14 Jun 2018 09:02:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AED58E088A; Thu, 14 Jun 2018 09:02:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FC68E088A for ; Thu, 14 Jun 2018 09:02:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED489335C75 for ; Thu, 14 Jun 2018 09:02:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A9802C8 for ; Thu, 14 Jun 2018 09:02:38 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1528966867.d52abe88f3211bf2109f7c9b470250cae1929145.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmSMPmon/files/, x11-plugins/wmSMPmon/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmSMPmon/files/wmSMPmon-3.1-makefile.patch x11-plugins/wmSMPmon/wmSMPmon-3.1-r2.ebuild X-VCS-Directories: x11-plugins/wmSMPmon/files/ x11-plugins/wmSMPmon/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: d52abe88f3211bf2109f7c9b470250cae1929145 X-VCS-Branch: master Date: Thu, 14 Jun 2018 09:02:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4a33cd30-5a60-4d06-adff-b859fb524957 X-Archives-Hash: c2856cf85a85bea60ad13866bcbf3925 commit: d52abe88f3211bf2109f7c9b470250cae1929145 Author: Michael Mair-Keimberger gmail com> AuthorDate: Mon Jun 11 20:17:31 2018 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Thu Jun 14 09:01:07 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52abe88 x11-plugins/wmSMPmon: EAPI7, use HTTPS, improve ebuild .../wmSMPmon/files/wmSMPmon-3.1-makefile.patch | 4 +-- x11-plugins/wmSMPmon/wmSMPmon-3.1-r2.ebuild | 31 ++++++++++++++++++++++ 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/x11-plugins/wmSMPmon/files/wmSMPmon-3.1-makefile.patch b/x11-plugins/wmSMPmon/files/wmSMPmon-3.1-makefile.patch index 1bd27f47c0f..3dd1b0636d8 100644 --- a/x11-plugins/wmSMPmon/files/wmSMPmon-3.1-makefile.patch +++ b/x11-plugins/wmSMPmon/files/wmSMPmon-3.1-makefile.patch @@ -1,5 +1,5 @@ ---- Makefile.orig 2005-02-22 23:24:23.000000000 +0100 -+++ Makefile 2008-01-28 00:12:33.000000000 +0100 +--- a/Makefile 2005-02-22 23:24:23.000000000 +0100 ++++ b/Makefile 2008-01-28 00:12:33.000000000 +0100 @@ -2,22 +2,24 @@ # Adapted for wmSMPmon 2.9.x and higher: Thomas Ribbrock diff --git a/x11-plugins/wmSMPmon/wmSMPmon-3.1-r2.ebuild b/x11-plugins/wmSMPmon/wmSMPmon-3.1-r2.ebuild new file mode 100644 index 00000000000..5ec664e00fd --- /dev/null +++ b/x11-plugins/wmSMPmon/wmSMPmon-3.1-r2.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="SMP system monitor dockapp" +HOMEPAGE="https://www.dockapps.net/wmsmpmon" +SRC_URI="https://www.dockapps.net/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +DOCS=( ../Changelog ) + +S="${WORKDIR}/${P}/${PN}" + +PATCHES=( "${FILESDIR}"/${P}-makefile.patch ) + +src_compile() { + emake CC="$(tc-getCC)" LIBDIR="/usr/$(get_libdir)" +}