diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2014-07-16 01:57:33 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2014-07-16 01:57:33 +0000 |
commit | 737dce7812d8b6f9c65857118e2c161b5e47ed27 (patch) | |
tree | 6bcf8598ff249e3cb750ab652aed8965d05fa9fe /games-board | |
parent | old (diff) | |
download | gentoo-2-737dce7812d8b6f9c65857118e2c161b5e47ed27.tar.gz gentoo-2-737dce7812d8b6f9c65857118e2c161b5e47ed27.tar.bz2 gentoo-2-737dce7812d8b6f9c65857118e2c161b5e47ed27.zip |
old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/pokerth/ChangeLog | 6 | ||||
-rw-r--r-- | games-board/pokerth/files/pokerth-1.0.1-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 bf5040ea7623..6fdc7540bb8f 100644 --- a/games-board/pokerth/ChangeLog +++ b/games-board/pokerth/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-board/pokerth # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/ChangeLog,v 1.64 2014/06/08 11:07:13 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/ChangeLog,v 1.65 2014/07/16 01:57:33 mr_bones_ Exp $ + + 16 Jul 2014; Michael Sterrett <mr_bones_@gentoo.org> + -files/pokerth-1.0.1-underlinking.patch, -pokerth-1.0.1.ebuild: + old 08 Jun 2014; Agostino Sarubbo <ago@gentoo.org> pokerth-1.1.1.ebuild: Stable for ppc, wrt bug #507868 diff --git a/games-board/pokerth/files/pokerth-1.0.1-underlinking.patch b/games-board/pokerth/files/pokerth-1.0.1-underlinking.patch deleted file mode 100644 index 397fb7d6c1bc..000000000000 --- a/games-board/pokerth/files/pokerth-1.0.1-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 36b8abc30059..000000000000 --- a/games-board/pokerth/pokerth-1.0.1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2014 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.7 2014/03/01 22:25:50 mgorny 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:0 - 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 -} |