From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-893309-garchives=archives.gentoo.org@lists.gentoo.org> 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 75F9A13832E for <garchives@archives.gentoo.org>; Sun, 24 Jul 2016 11:54:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A777E0B39; Sun, 24 Jul 2016 11:54:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A032CE0B39 for <gentoo-commits@lists.gentoo.org>; Sun, 24 Jul 2016 11:54:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 442E3340C54 for <gentoo-commits@lists.gentoo.org>; Sun, 24 Jul 2016 11:54:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0FA87CA for <gentoo-commits@lists.gentoo.org>; Sun, 24 Jul 2016 11:54:39 +0000 (UTC) From: "Jeroen Roovers" <jer@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" <jer@gentoo.org> Message-ID: <1469361238.f966d5739580b59fcc675a813ed5e2761886e8eb.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xsnow/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xsnow/xsnow-1.42-r2.ebuild X-VCS-Directories: x11-misc/xsnow/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: f966d5739580b59fcc675a813ed5e2761886e8eb X-VCS-Branch: master Date: Sun, 24 Jul 2016 11:54:39 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7e1554c5-6dda-4bca-8e25-165634766efe X-Archives-Hash: 2c6f13d0d8a9427a7260bcff61bc93fe commit: f966d5739580b59fcc675a813ed5e2761886e8eb Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Sun Jul 24 11:53:58 2016 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Sun Jul 24 11:53:58 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f966d573 x11-misc/xsnow: EAPI update. Package-Manager: portage-2.3.0 x11-misc/xsnow/xsnow-1.42-r2.ebuild | 46 +++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/x11-misc/xsnow/xsnow-1.42-r2.ebuild b/x11-misc/xsnow/xsnow-1.42-r2.ebuild new file mode 100644 index 0000000..d337512 --- /dev/null +++ b/x11-misc/xsnow/xsnow-1.42-r2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="let it snow on your desktop and windows" +HOMEPAGE="http://dropmix.xs4all.nl/rick/Xsnow/" +SRC_URI="${HOMEPAGE}${P}.tar.gz" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXt + x11-libs/libXext + x11-libs/libXpm +" +DEPEND=" + ${RDEPEND} + app-text/rman + x11-misc/imake + x11-misc/gccmakedep + x11-proto/xextproto + x11-proto/xproto +" + +src_compile() { + xmkmf || die + make depend || die + emake \ + CC="$(tc-getCC)" \ + CDEBUGFLAGS="${CFLAGS}" \ + LOCAL_LDFLAGS="${LDFLAGS}" +} + +src_install() { + dobin xsnow + rman -f HTML < xsnow._man > xsnow.1-html || die + newman xsnow._man xsnow.1 + newdoc xsnow.1-html xsnow.1.html + dodoc README +}