diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-08-17 15:50:07 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-08-17 15:50:07 +0000 |
commit | 45e9de4467658f1a39078fa6649266f22ab3cf79 (patch) | |
tree | ccd561e00ac04b2e669ad1af0b16908e7ed2204d /games-board | |
parent | version bump for bug 241700 (diff) | |
download | gentoo-2-45e9de4467658f1a39078fa6649266f22ab3cf79.tar.gz gentoo-2-45e9de4467658f1a39078fa6649266f22ab3cf79.tar.bz2 gentoo-2-45e9de4467658f1a39078fa6649266f22ab3cf79.zip |
version bump (bug #281735)
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/openyahtzee/ChangeLog | 10 | ||||
-rw-r--r-- | games-board/openyahtzee/openyahtzee-1.9.ebuild | 27 |
2 files changed, 35 insertions, 2 deletions
diff --git a/games-board/openyahtzee/ChangeLog b/games-board/openyahtzee/ChangeLog index eee56fef7adb..a046893b0e18 100644 --- a/games-board/openyahtzee/ChangeLog +++ b/games-board/openyahtzee/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-board/openyahtzee -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/openyahtzee/ChangeLog,v 1.7 2008/05/02 10:32:05 maekke Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/openyahtzee/ChangeLog,v 1.8 2009/08/17 15:50:07 mr_bones_ Exp $ + +*openyahtzee-1.9 (17 Aug 2009) + + 17 Aug 2009; Michael Sterrett <mr_bones_@gentoo.org> + +openyahtzee-1.9.ebuild: + version bump (bug #281735) 02 May 2008; Markus Meier <maekke@gentoo.org> openyahtzee-1.8.1.ebuild: amd64/x86 stable, bug #219793 diff --git a/games-board/openyahtzee/openyahtzee-1.9.ebuild b/games-board/openyahtzee/openyahtzee-1.9.ebuild new file mode 100644 index 000000000000..6b9edb652485 --- /dev/null +++ b/games-board/openyahtzee/openyahtzee-1.9.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/openyahtzee/openyahtzee-1.9.ebuild,v 1.1 2009/08/17 15:50:07 mr_bones_ Exp $ + +EAPI=2 +inherit 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 ~x86" +IUSE="" + +DEPEND="x11-libs/wxGTK:2.8[X]" + +src_configure() { + egamesconf --datadir=/usr/share || die +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog TODO + prepgamesdirs +} |