diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-10-21 03:53:05 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-10-21 03:53:05 +0000 |
commit | 74ecb4ab3a65840cfd7df4b2c214c9cfd30c554a (patch) | |
tree | e85e395eeb3d4b7af09c0b66a6fbd3a140cfebc4 /games-board/pokerth | |
parent | Unmask dev-util/gprof2dot (diff) | |
download | gentoo-2-74ecb4ab3a65840cfd7df4b2c214c9cfd30c554a.tar.gz gentoo-2-74ecb4ab3a65840cfd7df4b2c214c9cfd30c554a.tar.bz2 gentoo-2-74ecb4ab3a65840cfd7df4b2c214c9cfd30c554a.zip |
version bump
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-board/pokerth')
-rw-r--r-- | games-board/pokerth/ChangeLog | 8 | ||||
-rw-r--r-- | games-board/pokerth/pokerth-0.8.1.ebuild | 76 |
2 files changed, 83 insertions, 1 deletions
diff --git a/games-board/pokerth/ChangeLog b/games-board/pokerth/ChangeLog index b8d6ffcd167d..5903c4e36742 100644 --- a/games-board/pokerth/ChangeLog +++ b/games-board/pokerth/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-board/pokerth # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/ChangeLog,v 1.18 2010/10/06 21:57:58 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/ChangeLog,v 1.19 2010/10/21 03:53:04 mr_bones_ Exp $ + +*pokerth-0.8.1 (21 Oct 2010) + + 21 Oct 2010; Michael Sterrett <mr_bones_@gentoo.org> + +pokerth-0.8.1.ebuild: + version bump 06 Oct 2010; Michael Sterrett <mr_bones_@gentoo.org> pokerth-0.8.ebuild: add qt-sql dep for bug #339615 diff --git a/games-board/pokerth/pokerth-0.8.1.ebuild b/games-board/pokerth/pokerth-0.8.1.ebuild new file mode 100644 index 000000000000..9194edec3b74 --- /dev/null +++ b/games-board/pokerth/pokerth-0.8.1.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/pokerth/pokerth-0.8.1.ebuild,v 1.1 2010/10/21 03:53:05 mr_bones_ Exp $ + +EAPI=2 +inherit multilib flag-o-matic eutils qt4 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="GPL-1 GPL-2 GPL-3 BitstreamVera public-domain" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="dedicated" + +DEPEND=">=dev-libs/boost-1.41 + >=net-libs/gnutls-2.2.2 + >=net-misc/curl-7.16 + x11-libs/qt-core:4 + >=virtual/gsasl-1.1 + !dedicated? ( + media-libs/libsdl + media-libs/sdl-mixer[mikmod,vorbis] + >=sys-libs/zlib-1.2.3 + x11-libs/qt-gui:4 + x11-libs/qt-sql:4 + )" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + local boost_ver + + if use dedicated ; then + sed -i \ + -e 's/pokerth_game.pro//' \ + pokerth.pro \ + || die "sed failed" + fi + sed -i \ + -e '/no_dead_strip_inits_and_terms/d' \ + *pro \ + || die 'sed failed' + local boost_ver=$(best_version ">=dev-libs/boost-1.39") + + boost_ver=${boost_ver/*boost-/} + boost_ver=${boost_ver%.*} + boost_ver=${boost_ver/./_} + + einfo "Using boost version ${boost_ver}" + append-cxxflags \ + -I/usr/include/boost-${boost_ver} + append-ldflags \ + -L/usr/$(get_libdir)/boost-${boost_ver} + export BOOST_INCLUDEDIR="/usr/include/boost-${boost_ver}" + export BOOST_LIBRARYDIR="/usr/$(get_libdir)/boost-${boost_ver}" +} + +src_configure() { + eqmake4 +} + +src_install() { + dogamesbin bin/pokerth_server || die + if ! use dedicated ; then + dogamesbin ${PN} || die + insinto "${GAMES_DATADIR}/${PN}" + doins -r data || die + domenu ${PN}.desktop + doicon ${PN}.png + fi + dodoc ChangeLog TODO docs/{net_protocol,server_setup_howto}.txt + prepgamesdirs +} |