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 2C970138330 for ; Wed, 14 Sep 2016 17:26:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74413E0BD1; Wed, 14 Sep 2016 17:26:51 +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 CD5D3E0BC7 for ; Wed, 14 Sep 2016 17:26:50 +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 01A2B340845 for ; Wed, 14 Sep 2016 17:26:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D98F2488 for ; Wed, 14 Sep 2016 17:26:47 +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: <1473873993.cfcc1265854507cd6a0311cdeb8dfd6959a1b153.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/chessx/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/chessx/chessx-1.4.0-r1.ebuild X-VCS-Directories: games-board/chessx/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: cfcc1265854507cd6a0311cdeb8dfd6959a1b153 X-VCS-Branch: master Date: Wed, 14 Sep 2016 17:26:47 +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: 4d185097-542e-4adc-9c2f-36627e53d3c9 X-Archives-Hash: de42573f37aceb79dd9a805d4e14ca29 commit: cfcc1265854507cd6a0311cdeb8dfd6959a1b153 Author: Austin English gentoo org> AuthorDate: Thu Sep 8 23:48:24 2016 +0000 Commit: Austin English gentoo org> CommitDate: Wed Sep 14 17:26:33 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfcc1265 games-board/chessx: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 games-board/chessx/chessx-1.4.0-r1.ebuild | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/games-board/chessx/chessx-1.4.0-r1.ebuild b/games-board/chessx/chessx-1.4.0-r1.ebuild new file mode 100644 index 00000000..5c34a63 --- /dev/null +++ b/games-board/chessx/chessx-1.4.0-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils qmake-utils + +DESCRIPTION="Qt5-based Chess Database Utility" +HOMEPAGE="http://chessx.sourceforge.net/" +SRC_URI="https://sourceforge.net/projects/chessx/files/chessx/${PV}/${P}.tgz" + +LICENSE="GPL-2+ LGPL-2+ LGPL-2.1+ ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-qt/qtgui:5 + dev-qt/qtmultimedia:5 + dev-qt/qtnetwork:5 + dev-qt/qtprintsupport:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + sys-libs/zlib" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5" + +PATCHES=( + "${FILESDIR}"/${P}-zlib.patch +) + +src_configure() { + eqmake5 +} + +src_install() { + dobin release/${PN} + dodoc ChangeLog TODO + doicon data/images/${PN}.png + domenu unix/chessx.desktop +}