* [gentoo-commits] repo/gentoo:master commit in: games-board/holdingnuts/
@ 2016-08-05 0:23 Austin English
0 siblings, 0 replies; 3+ messages in thread
From: Austin English @ 2016-08-05 0:23 UTC (permalink / raw
To: gentoo-commits
commit: ce7d36bd87f8529dce1a50029233da5b8903c15b
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 4 22:56:30 2016 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Fri Aug 5 00:22:34 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce7d36bd
games-board/holdingnuts: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: portage-2.3.0
.../holdingnuts/holdingnuts-0.0.5-r2.ebuild | 55 ++++++++++++++++++++++
1 file changed, 55 insertions(+)
diff --git a/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild b/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild
new file mode 100644
index 0000000..89c6f2b
--- /dev/null
+++ b/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils cmake-utils
+
+DESCRIPTION="An open source poker client and server"
+HOMEPAGE="http://www.holdingnuts.net/"
+SRC_URI="http://downloads.sourceforge.net/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="alsa debug dedicated"
+
+RDEPEND="
+ !dedicated? (
+ dev-qt/qtcore:4
+ dev-qt/qtgui:4
+ alsa? ( >=media-libs/libsdl-1.2.10:0[alsa] )
+ )"
+
+DEPEND="${RDEPEND}
+ >=dev-util/cmake-2.6.3"
+
+PATCHES=(
+ "${FILESDIR}"/${P}-wheel.patch # upstream patch (bug #307901)
+)
+
+src_prepare() {
+ default
+
+ sed -i -e '/^Path/d' holdingnuts.desktop || die
+}
+
+src_configure() {
+ local mycmakeargs="-DWITH_AUDIO=$(usex alsa)
+ -DENABLE_CLIENT=$(usex !dedicated)
+ -DWITH_DEBUG=$(usex debug)"
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+
+ if ! use dedicated ; then
+ domenu ${PN}.desktop
+ doicon ${PN}.png
+ doman docs/${PN}.6
+ fi
+
+ dodoc ChangeLog docs/protocol_spec.txt
+ doman docs/${PN}-server.6
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-board/holdingnuts/
@ 2016-09-14 19:44 Michael Palimaka
0 siblings, 0 replies; 3+ messages in thread
From: Michael Palimaka @ 2016-09-14 19:44 UTC (permalink / raw
To: gentoo-commits
commit: 3e5cf9458910c6c05715eb7e8d62c290352f1c58
Author: Hummer12007 <hilobakho <AT> gmail <DOT> com>
AuthorDate: Wed Sep 14 19:31:28 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 19:44:09 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e5cf945
games-board/holdingnuts: set mycmakeargs to array
This is required in EAPI 6
Bug: https://bugs.gentoo.org/show_bug.cgi?id=590524
games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild b/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild
index 89c6f2b..1f3b0a1 100644
--- a/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild
+++ b/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild
@@ -35,9 +35,9 @@ src_prepare() {
}
src_configure() {
- local mycmakeargs="-DWITH_AUDIO=$(usex alsa)
+ local mycmakeargs=(-DWITH_AUDIO=$(usex alsa)
-DENABLE_CLIENT=$(usex !dedicated)
- -DWITH_DEBUG=$(usex debug)"
+ -DWITH_DEBUG=$(usex debug))
cmake-utils_src_configure
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-board/holdingnuts/
@ 2017-10-16 0:08 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2017-10-16 0:08 UTC (permalink / raw
To: gentoo-commits
commit: 268cdc056ddcc77cca94428f348db2cd0ca90c95
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 15 23:47:10 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 00:07:32 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=268cdc05
games-board/holdingnuts: [QA] Add cmake-utils_src_prepare
Package-Manager: Portage-2.3.11, Repoman-2.3.3
games-board/holdingnuts/holdingnuts-0.0.5-r1.ebuild | 10 ++++++++--
games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild | 4 ++--
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/games-board/holdingnuts/holdingnuts-0.0.5-r1.ebuild b/games-board/holdingnuts/holdingnuts-0.0.5-r1.ebuild
index 457e8f4aa2c..43adabfbe09 100644
--- a/games-board/holdingnuts/holdingnuts-0.0.5-r1.ebuild
+++ b/games-board/holdingnuts/holdingnuts-0.0.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -23,9 +23,15 @@ RDEPEND="
DEPEND="${RDEPEND}
>=dev-util/cmake-2.6.3"
+PATCHES=(
+ # upstream patch (bug #307901)
+ "${FILESDIR}"/${P}-wheel.patch
+)
+
src_prepare() {
+ cmake-utils_src_prepare
+
sed -i -e '/^Path/d' holdingnuts.desktop || die
- epatch "${FILESDIR}"/${P}-wheel.patch # upstream patch (bug #307901)
}
src_configure() {
diff --git a/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild b/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild
index 08d29871cc4..daad81defad 100644
--- a/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild
+++ b/games-board/holdingnuts/holdingnuts-0.0.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -28,7 +28,7 @@ PATCHES=(
)
src_prepare() {
- default
+ cmake-utils_src_prepare
sed -i -e '/^Path/d' holdingnuts.desktop || die
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-10-16 0:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-14 19:44 [gentoo-commits] repo/gentoo:master commit in: games-board/holdingnuts/ Michael Palimaka
-- strict thread matches above, loose matches on Subject: below --
2017-10-16 0:08 David Seifert
2016-08-05 0:23 Austin English
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox