diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2006-10-12 17:14:35 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2006-10-12 17:14:35 +0000 |
commit | 5cfcfc74e9b06f1a910afd1868ee68bbc55b2736 (patch) | |
tree | c8ead6d8e28e96180c513f290c05a8049a26b6ca /games-board | |
parent | Remove the correct files. (diff) | |
download | gentoo-2-5cfcfc74e9b06f1a910afd1868ee68bbc55b2736.tar.gz gentoo-2-5cfcfc74e9b06f1a910afd1868ee68bbc55b2736.tar.bz2 gentoo-2-5cfcfc74e9b06f1a910afd1868ee68bbc55b2736.zip |
Version bump
(Portage version: 2.1.2_pre2-r9)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/gnugo/ChangeLog | 7 | ||||
-rw-r--r-- | games-board/gnugo/files/digest-gnugo-3.7.10 | 3 | ||||
-rw-r--r-- | games-board/gnugo/gnugo-3.7.10.ebuild | 31 |
3 files changed, 40 insertions, 1 deletions
diff --git a/games-board/gnugo/ChangeLog b/games-board/gnugo/ChangeLog index 98f375cc98c8..e66141ab2133 100644 --- a/games-board/gnugo/ChangeLog +++ b/games-board/gnugo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-board/gnugo # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/ChangeLog,v 1.14 2006/03/18 23:23:42 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/ChangeLog,v 1.15 2006/10/12 17:14:35 nyhm Exp $ + +*gnugo-3.7.10 (12 Oct 2006) + + 12 Oct 2006; Tristan Heaven <nyhm@gentoo.org> +gnugo-3.7.10.ebuild: + Version bump *gnugo-3.7.9 (18 Mar 2006) diff --git a/games-board/gnugo/files/digest-gnugo-3.7.10 b/games-board/gnugo/files/digest-gnugo-3.7.10 new file mode 100644 index 000000000000..f11c5005ce60 --- /dev/null +++ b/games-board/gnugo/files/digest-gnugo-3.7.10 @@ -0,0 +1,3 @@ +MD5 a5d225cf4868edee0981b85447de5ad8 gnugo-3.7.10.tar.gz 2917716 +RMD160 1cd5337abfe86b023cd9bfefb1d9af974fe6ad41 gnugo-3.7.10.tar.gz 2917716 +SHA256 e8e7a48bb6a4fb310aef508a610dfd8a410c19e61424352d58afdf6ec26e3c6c gnugo-3.7.10.tar.gz 2917716 diff --git a/games-board/gnugo/gnugo-3.7.10.ebuild b/games-board/gnugo/gnugo-3.7.10.ebuild new file mode 100644 index 000000000000..eb80a489f860 --- /dev/null +++ b/games-board/gnugo/gnugo-3.7.10.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/gnugo-3.7.10.ebuild,v 1.1 2006/10/12 17:14:35 nyhm Exp $ + +inherit games + +DESCRIPTION="A Go-playing program" +HOMEPAGE="http://www.gnu.org/software/gnugo/devel.html" +SRC_URI="ftp://sporadic.stanford.edu/pub/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86" +IUSE="readline" + +DEPEND=">=sys-libs/ncurses-5.2-r3 + readline? ( sys-libs/readline )" + +src_compile() { + egamesconf \ + $(use_with readline) \ + --disable-dependency-tracking \ + --enable-cache-size=32 || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README THANKS TODO + prepgamesdirs +} |