diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2012-07-11 21:26:48 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2012-07-11 21:26:48 +0000 |
commit | 6e5dd3a1e83696dacd6cb0c5af026a99aeeb381f (patch) | |
tree | 933ed8c5840a2ac140c14084829cbadab9401f67 /games-board/openyahtzee | |
parent | Version bump. (diff) | |
download | gentoo-2-6e5dd3a1e83696dacd6cb0c5af026a99aeeb381f.tar.gz gentoo-2-6e5dd3a1e83696dacd6cb0c5af026a99aeeb381f.tar.bz2 gentoo-2-6e5dd3a1e83696dacd6cb0c5af026a99aeeb381f.zip |
version bump
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'games-board/openyahtzee')
-rw-r--r-- | games-board/openyahtzee/ChangeLog | 10 | ||||
-rw-r--r-- | games-board/openyahtzee/files/openyahtzee-1.9.1-underlink.patch | 8 | ||||
-rw-r--r-- | games-board/openyahtzee/openyahtzee-1.9.1.ebuild | 33 |
3 files changed, 49 insertions, 2 deletions
diff --git a/games-board/openyahtzee/ChangeLog b/games-board/openyahtzee/ChangeLog index 741a7d9e4cb4..8dfe98a40ec1 100644 --- a/games-board/openyahtzee/ChangeLog +++ b/games-board/openyahtzee/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-board/openyahtzee -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/openyahtzee/ChangeLog,v 1.13 2011/06/20 11:48:11 tupone Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/openyahtzee/ChangeLog,v 1.14 2012/07/11 21:26:48 mr_bones_ Exp $ + +*openyahtzee-1.9.1 (11 Jul 2012) + + 11 Jul 2012; Michael Sterrett <mr_bones_@gentoo.org> + +files/openyahtzee-1.9.1-underlink.patch, +openyahtzee-1.9.1.ebuild: + version bump 20 Jun 2011; Tupone Alfredo <tupone@gentoo.org> openyahtzee-1.9.ebuild, +files/openyahtzee-1.9-underlink.patch: diff --git a/games-board/openyahtzee/files/openyahtzee-1.9.1-underlink.patch b/games-board/openyahtzee/files/openyahtzee-1.9.1-underlink.patch new file mode 100644 index 000000000000..9e49012d131a --- /dev/null +++ b/games-board/openyahtzee/files/openyahtzee-1.9.1-underlink.patch @@ -0,0 +1,8 @@ +--- src/Makefile.am.old 2011-06-20 13:41:03.264848550 +0200 ++++ src/Makefile.am 2011-06-20 13:42:39.667245673 +0200 +@@ -42,4 +42,4 @@ + openyahtzee.rc + + AM_CXXFLAGS = @WX_CXXFLAGS@ +-openyahtzee_LDFLAGS = @WX_LIBS@ ++openyahtzee_LDADD = @WX_LIBS@ -ldl diff --git a/games-board/openyahtzee/openyahtzee-1.9.1.ebuild b/games-board/openyahtzee/openyahtzee-1.9.1.ebuild new file mode 100644 index 000000000000..18f68a0418fd --- /dev/null +++ b/games-board/openyahtzee/openyahtzee-1.9.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/openyahtzee/openyahtzee-1.9.1.ebuild,v 1.1 2012/07/11 21:26:48 mr_bones_ Exp $ + +EAPI=2 +WX_GTK_VER="2.8" +inherit eutils autotools wxwidgets games + +DESCRIPTION="A full-featured wxWidgets version of the classic dice game Yahtzee" +HOMEPAGE="http://openyahtzee.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="x11-libs/wxGTK:2.8[X]" + +src_prepare() { + epatch "${FILESDIR}"/${P}-underlink.patch + eautoreconf +} + +src_configure() { + egamesconf --datadir=/usr/share || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog TODO + prepgamesdirs +} |