diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2013-11-06 21:33:45 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2013-11-06 21:33:45 +0000 |
commit | 7e22236105b99e32f9e5d137fb26073cc7415b65 (patch) | |
tree | f2115be2e3db73bd3aafa6e822f1da9196e349b0 /games-board/pokerth | |
parent | bump EAPI=5 (diff) | |
download | gentoo-2-7e22236105b99e32f9e5d137fb26073cc7415b65.tar.gz gentoo-2-7e22236105b99e32f9e5d137fb26073cc7415b65.tar.bz2 gentoo-2-7e22236105b99e32f9e5d137fb26073cc7415b65.zip |
old
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-board/pokerth')
-rw-r--r-- | games-board/pokerth/ChangeLog | 6 | ||||
-rw-r--r-- | games-board/pokerth/files/pokerth-1.0-underlinking.patch | 20 | ||||
-rw-r--r-- | games-board/pokerth/pokerth-1.0.1.ebuild | 70 |
3 files changed, 5 insertions, 91 deletions
diff --git a/games-board/pokerth/ChangeLog b/games-board/pokerth/ChangeLog index 3fd184d81460..1333af0d3943 100644 --- a/games-board/pokerth/ChangeLog +++ b/games-board/pokerth/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-board/pokerth # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/ChangeLog,v 1.57 2013/06/30 12:44:20 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/ChangeLog,v 1.58 2013/11/06 21:33:45 mr_bones_ Exp $ + + 06 Nov 2013; Michael Sterrett <mr_bones_@gentoo.org> + -files/pokerth-1.0-underlinking.patch, -pokerth-1.0.1.ebuild: + old 30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> pokerth-1.0.1.ebuild: Stable for x86, wrt bug #475228 diff --git a/games-board/pokerth/files/pokerth-1.0-underlinking.patch b/games-board/pokerth/files/pokerth-1.0-underlinking.patch deleted file mode 100644 index 397fb7d6c1bc..000000000000 --- a/games-board/pokerth/files/pokerth-1.0-underlinking.patch +++ /dev/null @@ -1,20 +0,0 @@ -From: Julian Ospald <hasufell@gentoo.org> -Date: Thu Aug 16 22:25:12 UTC 2012 -Subject: build system - -fix compilation for linkers that don't permit underlinking -reorder linker line to fix issues with as-needed - ---- pokerth_server.pro -+++ pokerth_server.pro -@@ -114,8 +114,8 @@ - LIBS += -lpokerth_lib \ - -lpokerth_db \ - -lpokerth_protocol \ -- -lcurl \ -- -lircclient -+ -lircclient \ -+ $$system(pkg-config --libs --static libcurl) - - win32 { - DEFINES += CURL_STATICLIB diff --git a/games-board/pokerth/pokerth-1.0.1.ebuild b/games-board/pokerth/pokerth-1.0.1.ebuild deleted file mode 100644 index 360116cd5fe8..000000000000 --- a/games-board/pokerth/pokerth-1.0.1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/pokerth-1.0.1.ebuild,v 1.4 2013/06/30 12:44:20 ago Exp $ - -EAPI=5 -inherit flag-o-matic eutils qt4-r2 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 ~ppc x86" -IUSE="dedicated" - -RDEPEND="dev-db/sqlite:3 - dev-libs/boost[threads(+)] - dev-libs/protobuf - dev-libs/libgcrypt - dev-libs/tinyxml[stl] - amd64? ( net-libs/libircclient ) - ppc? ( >=net-libs/libircclient-1.6-r2 ) - x86? ( net-libs/libircclient ) - >=net-misc/curl-7.16 - dev-qt/qtcore:4 - virtual/gsasl - !dedicated? ( - media-libs/libsdl:0 - media-libs/sdl-mixer[mod,vorbis] - dev-qt/qtgui:4 - )" -DEPEND="${RDEPEND} - !dedicated? ( dev-qt/qtsql:4 ) - 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}-underlinking.patch -} - -src_configure() { - eqmake4 -} - -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 -} |