diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-03-12 05:17:09 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-03-12 05:17:09 +0000 |
commit | 87cf34ecf27f13178f7d9a549c74cce72b5f7a0b (patch) | |
tree | 05a3227b47d55c1ce37919f151293f5487868a5d /games-board | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-87cf34ecf27f13178f7d9a549c74cce72b5f7a0b.tar.gz gentoo-2-87cf34ecf27f13178f7d9a549c74cce72b5f7a0b.tar.bz2 gentoo-2-87cf34ecf27f13178f7d9a549c74cce72b5f7a0b.zip |
version bump
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/gnugo/ChangeLog | 7 | ||||
-rw-r--r-- | games-board/gnugo/gnugo-3.8.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/games-board/gnugo/ChangeLog b/games-board/gnugo/ChangeLog index e93a74a20b5c..ec3c10f9095c 100644 --- a/games-board/gnugo/ChangeLog +++ b/games-board/gnugo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-board/gnugo # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/ChangeLog,v 1.17 2009/01/24 05:22:49 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/ChangeLog,v 1.18 2009/03/12 05:17:09 mr_bones_ Exp $ + +*gnugo-3.8 (12 Mar 2009) + + 12 Mar 2009; Michael Sterrett <mr_bones_@gentoo.org> +gnugo-3.8.ebuild: + version bump (bug #262063) *gnugo-3.7.13 (24 Jan 2009) diff --git a/games-board/gnugo/gnugo-3.8.ebuild b/games-board/gnugo/gnugo-3.8.ebuild new file mode 100644 index 000000000000..d2b0bdf10b28 --- /dev/null +++ b/games-board/gnugo/gnugo-3.8.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/gnugo-3.8.ebuild,v 1.1 2009/03/12 05:17:09 mr_bones_ Exp $ + +EAPI=2 +inherit games + +DESCRIPTION="A Go-playing program" +HOMEPAGE="http://www.gnu.org/software/gnugo/devel.html" +SRC_URI="http://match.stanford.edu/gnugo/archive/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86" +IUSE="readline" + +DEPEND="readline? ( sys-libs/readline >=sys-libs/ncurses-5.2-r3 )" + +src_configure() { + egamesconf \ + --disable-dependency-tracking \ + $(use_with readline) \ + --enable-cache-size=32 +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README THANKS TODO + prepgamesdirs +} |