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 BE7E2138334 for ; Thu, 26 Jul 2018 20:33:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2C08E092E; Thu, 26 Jul 2018 20:33:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7697EE092E for ; Thu, 26 Jul 2018 20:33:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E31FD335CD5 for ; Thu, 26 Jul 2018 20:33:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 207CE38B for ; Thu, 26 Jul 2018 20:33:25 +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: <1532637052.8b3c624a17d4cceb69f3b99c074d8ebd8f70d0c5.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmfrog/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmfrog/wmfrog-0.3.1-r1.ebuild X-VCS-Directories: x11-plugins/wmfrog/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 8b3c624a17d4cceb69f3b99c074d8ebd8f70d0c5 X-VCS-Branch: master Date: Thu, 26 Jul 2018 20:33:25 +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: 2659692e-deda-440a-8e7c-8bb018f94a63 X-Archives-Hash: de8dfe3a9aacf2b06c4c3ec7b08c1a02 commit: 8b3c624a17d4cceb69f3b99c074d8ebd8f70d0c5 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Jul 22 12:49:43 2018 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Thu Jul 26 20:30:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b3c624a x11-plugins/wmfrog: EAPI7, improve ebuild x11-plugins/wmfrog/wmfrog-0.3.1-r1.ebuild | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/x11-plugins/wmfrog/wmfrog-0.3.1-r1.ebuild b/x11-plugins/wmfrog/wmfrog-0.3.1-r1.ebuild new file mode 100644 index 00000000000..2951a537833 --- /dev/null +++ b/x11-plugins/wmfrog/wmfrog-0.3.1-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="a weather application, it shows the weather in a graphical way" +HOMEPAGE="http://wiki.colar.net/wmfrog_dockapp" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +RDEPEND="x11-libs/libXext + x11-libs/libXpm + x11-libs/libX11" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +S="${WORKDIR}/Src" + +DOCS=( ../{CHANGES,HINTS} ) + +src_prepare() { + default + emake clean +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" INCDIR="" \ + LIBDIR="" SYSTEM="${LDFLAGS}" +}