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 913E313832E for ; Fri, 29 Jul 2016 17:55:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21787E0879; Fri, 29 Jul 2016 17:55:32 +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 BA250E0879 for ; Fri, 29 Jul 2016 17:55:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9A2BC340BDD for ; Fri, 29 Jul 2016 17:55:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88C267DA for ; Fri, 29 Jul 2016 17:55:28 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1469814907.5d234dd26ba360a840e5f0a1adab777329ca8eac.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/xmahjongg/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/xmahjongg/xmahjongg-3.7-r1.ebuild X-VCS-Directories: games-board/xmahjongg/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 5d234dd26ba360a840e5f0a1adab777329ca8eac X-VCS-Branch: master Date: Fri, 29 Jul 2016 17:55:28 +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: 72e0e36c-feae-4706-a23c-c59f5b85042d X-Archives-Hash: fee4b5b6c8e2e37404719f3f65878823 commit: 5d234dd26ba360a840e5f0a1adab777329ca8eac Author: Austin English gentoo org> AuthorDate: Fri Jul 29 17:55:07 2016 +0000 Commit: Austin English gentoo org> CommitDate: Fri Jul 29 17:55:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d234dd2 games-board/xmahjongg: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 games-board/xmahjongg/xmahjongg-3.7-r1.ebuild | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/games-board/xmahjongg/xmahjongg-3.7-r1.ebuild b/games-board/xmahjongg/xmahjongg-3.7-r1.ebuild new file mode 100644 index 0000000..0bde359 --- /dev/null +++ b/games-board/xmahjongg/xmahjongg-3.7-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils + +DESCRIPTION="friendly GUI version of xmahjongg" +HOMEPAGE="http://www.lcdf.org/xmahjongg/" +SRC_URI="http://www.lcdf.org/xmahjongg/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +RDEPEND="x11-libs/libX11" +DEPEND="${RDEPEND} + x11-libs/libXt" + +src_prepare() { + default + sed -i \ + -e '/X_PRE_LIBS/s:-lSM -lICE::' \ + configure || die +} + +src_install() { + default + newicon share/tiles/small.gif ${PN}.gif + make_desktop_entry xmahjongg "Xmahjongg" /usr/share/pixmaps/${PN}.gif +}