public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Sterrett" <mr_bones_@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/pokerth/files/, games-board/pokerth/
Date: Sun, 31 Jan 2016 22:32:53 +0000 (UTC)	[thread overview]
Message-ID: <1454279557.bbfaabe4a1ed7fb66220b22424490763ab214d80.mr_bones_@gentoo> (raw)

commit:     bbfaabe4a1ed7fb66220b22424490763ab214d80
Author:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 31 22:31:18 2016 +0000
Commit:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Sun Jan 31 22:32:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbfaabe4

games-board/pokerth: rev bump to move to qt5 (bug #572678)

Package-Manager: portage-2.2.26

 games-board/pokerth/files/pokerth-1.1.1-qt5.patch | 19 +++++++
 games-board/pokerth/pokerth-1.1.1-r1.ebuild       | 66 +++++++++++++++++++++++
 2 files changed, 85 insertions(+)

diff --git a/games-board/pokerth/files/pokerth-1.1.1-qt5.patch b/games-board/pokerth/files/pokerth-1.1.1-qt5.patch
new file mode 100644
index 0000000..1d3dd63
--- /dev/null
+++ b/games-board/pokerth/files/pokerth-1.1.1-qt5.patch
@@ -0,0 +1,19 @@
+From 731f5f05f54065a67fa7c9f9bc8fe992390cb979 Mon Sep 17 00:00:00 2001
+From: Felix Hammer <f.hammer@web.de>
+Date: Fri, 7 Aug 2015 00:57:51 +0200
+Subject: [PATCH] Qt 5.5.0 patch for qtsingleapplication
+
+---
+ src/third_party/qtsingleapplication/qtlocalpeer.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/src/third_party/qtsingleapplication/qtlocalpeer.cpp
++++ b/src/third_party/qtsingleapplication/qtlocalpeer.cpp
+@@ -31,6 +31,7 @@
+ 
+ #include <QCoreApplication>
+ #include <QTime>
++#include <QDataStream>
+ 
+ #if defined(Q_OS_WIN)
+ #include <QLibrary>

diff --git a/games-board/pokerth/pokerth-1.1.1-r1.ebuild b/games-board/pokerth/pokerth-1.1.1-r1.ebuild
new file mode 100644
index 0000000..977229d
--- /dev/null
+++ b/games-board/pokerth/pokerth-1.1.1-r1.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit flag-o-matic eutils qmake-utils games
+
+MY_P="PokerTH-${PV}-src"
+DESCRIPTION="Texas Hold'em poker game"
+HOMEPAGE="http://www.pokerth.net/"
+SRC_URI="mirror://sourceforge/pokerth/${MY_P}.tar.bz2"
+
+LICENSE="AGPL-3 GPL-1 GPL-2 GPL-3 BitstreamVera public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dedicated"
+
+RDEPEND="dev-db/sqlite:3
+	dev-libs/boost:=[threads(+)]
+	dev-libs/protobuf
+	dev-libs/libgcrypt:0
+	dev-libs/tinyxml[stl]
+	>=net-libs/libircclient-1.6-r2
+	>=net-misc/curl-7.16
+	dev-qt/qtcore:5
+	virtual/gsasl
+	!dedicated? (
+		media-libs/libsdl:0
+		media-libs/sdl-mixer[mod,vorbis]
+		dev-qt/qtgui:5
+		dev-qt/qtwidgets:5
+		dev-qt/qtnetwork:5
+	)"
+DEPEND="${RDEPEND}
+	!dedicated? ( dev-qt/qtsql:5 )
+	virtual/pkgconfig"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+	if use dedicated ; then
+		sed -i -e 's/pokerth_game.pro//' pokerth.pro || die
+	fi
+
+	sed -i -e '/no_dead_strip_inits_and_terms/d' *pro || die
+
+	epatch "${FILESDIR}"/${P}-qt5.patch
+}
+
+src_configure() {
+	eqmake5 pokerth.pro
+}
+
+src_install() {
+	dogamesbin bin/pokerth_server
+	if ! use dedicated ; then
+		dogamesbin ${PN}
+		insinto "${GAMES_DATADIR}/${PN}"
+		doins -r data
+		domenu ${PN}.desktop
+		doicon ${PN}.png
+	fi
+	doman docs/pokerth.1
+	dodoc ChangeLog TODO docs/{gui_styling,server_setup}_howto.txt
+	prepgamesdirs
+}


             reply	other threads:[~2016-01-31 22:33 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-31 22:32 Michael Sterrett [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-01-22 11:35 [gentoo-commits] repo/gentoo:master commit in: games-board/pokerth/files/, games-board/pokerth/ David Seifert
2019-08-11 19:12 David Seifert
2020-05-18  1:35 Stefan Strogin
2024-07-12 20:56 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1454279557.bbfaabe4a1ed7fb66220b22424490763ab214d80.mr_bones_@gentoo \
    --to=mr_bones_@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox