diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 17:46:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 17:46:27 +0000 |
commit | fb8c4cf310fc6a66ecddbe48c1b77a183baa6141 (patch) | |
tree | 179b6d7697d589a3888e34ab007a4d76082e89ee /games-board/gnugo | |
parent | Changes to make the eclass more flexible (diff) | |
download | historical-fb8c4cf310fc6a66ecddbe48c1b77a183baa6141.tar.gz historical-fb8c4cf310fc6a66ecddbe48c1b77a183baa6141.tar.bz2 historical-fb8c4cf310fc6a66ecddbe48c1b77a183baa6141.zip |
board board games
Diffstat (limited to 'games-board/gnugo')
-rw-r--r-- | games-board/gnugo/ChangeLog | 32 | ||||
-rw-r--r-- | games-board/gnugo/Manifest | 5 | ||||
-rw-r--r-- | games-board/gnugo/files/digest-gnugo-3.2 | 1 | ||||
-rw-r--r-- | games-board/gnugo/files/digest-gnugo-3.3.22 | 1 | ||||
-rw-r--r-- | games-board/gnugo/gnugo-3.2.ebuild | 23 | ||||
-rw-r--r-- | games-board/gnugo/gnugo-3.3.22.ebuild | 27 |
6 files changed, 89 insertions, 0 deletions
diff --git a/games-board/gnugo/ChangeLog b/games-board/gnugo/ChangeLog new file mode 100644 index 000000000000..f326828d501d --- /dev/null +++ b/games-board/gnugo/ChangeLog @@ -0,0 +1,32 @@ +# ChangeLog for app-games/gnugo +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/ChangeLog,v 1.1 2003/09/10 17:46:27 vapier Exp $ + +*gnugo-3.3.22 (10 Jul 2003) + + 10 Jul 2003; Michael Sterrett <msterret@gentoo.org> gnugo-3.3.22.ebuild: + unstable version bump for bug 18796. Not to be marked stable. Note that + the SRC_URI and HOMEPAGE are different from the stable version. + +*gnugo-3.2 (26 Jan 2003) + + 26 Jan 2003; Phil Bordelon <sunflare@gentoo.org> gnugo-3.2.ebuild : + Version bump, with minor tweakage to more closely fit the current build + methodology. A quick glance on Bugzilla shows that Kalen Peterson + <kalenp@cs.washington.edu> suggested a bump as well in bug #12226. + +*gnugo-3.0.0 (1 Feb 2002) + + 28 Aug 2002; Mark Guertin <gerk@gentoo.org> gnugo-3.0.0.ebuild : + Added ppc to keywords + + 17 jul 2002; Jose Alberto Suárez López <bass@gentoo.org> gnugo-3.0.0.ebuild : + Added LICENSE, KEYWORDS. + + 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/games-board/gnugo/Manifest b/games-board/gnugo/Manifest new file mode 100644 index 000000000000..3b6b64a70ea4 --- /dev/null +++ b/games-board/gnugo/Manifest @@ -0,0 +1,5 @@ +MD5 6c04bbd458cdb686b2d6886d1b316881 ChangeLog 1429 +MD5 dd5dee36852d9ef96bf811c1ce6a2ac3 gnugo-3.2.ebuild 576 +MD5 9daf6b8170b96b595ebb228199dd6ce6 gnugo-3.3.22.ebuild 724 +MD5 8b2c35b94c8f2892a9f91bc8fa9779a7 files/digest-gnugo-3.2 62 +MD5 bf16c16d8ba6dd3b035c79924ea1947f files/digest-gnugo-3.3.22 65 diff --git a/games-board/gnugo/files/digest-gnugo-3.2 b/games-board/gnugo/files/digest-gnugo-3.2 new file mode 100644 index 000000000000..ecec5ced569a --- /dev/null +++ b/games-board/gnugo/files/digest-gnugo-3.2 @@ -0,0 +1 @@ +MD5 5fff329f97d947d81366f7d21a0ea1c8 gnugo-3.2.tar.gz 2012129 diff --git a/games-board/gnugo/files/digest-gnugo-3.3.22 b/games-board/gnugo/files/digest-gnugo-3.3.22 new file mode 100644 index 000000000000..c05e1cabe29c --- /dev/null +++ b/games-board/gnugo/files/digest-gnugo-3.3.22 @@ -0,0 +1 @@ +MD5 33376ee8fa90638dd443d06ddae0f5eb gnugo-3.3.22.tar.gz 2156373 diff --git a/games-board/gnugo/gnugo-3.2.ebuild b/games-board/gnugo/gnugo-3.2.ebuild new file mode 100644 index 000000000000..1cec84062f49 --- /dev/null +++ b/games-board/gnugo/gnugo-3.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/gnugo-3.2.ebuild,v 1.1 2003/09/10 17:46:27 vapier Exp $ + +DESCRIPTION="A Go-playing program" +SRC_URI="mirror://gnu/gnugo/${P}.tar.gz" +HOMEPAGE="http://www.gnu.org/software/gnugo/" + +KEYWORDS="x86 ppc" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.2-r3" + +src_compile() { + econf --enable-cache-size=32 --enable-dfa || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die +} diff --git a/games-board/gnugo/gnugo-3.3.22.ebuild b/games-board/gnugo/gnugo-3.3.22.ebuild new file mode 100644 index 000000000000..0c83a596e71e --- /dev/null +++ b/games-board/gnugo/gnugo-3.3.22.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/gnugo/gnugo-3.3.22.ebuild,v 1.1 2003/09/10 17:46:27 vapier Exp $ + +inherit games + +DESCRIPTION="A Go-playing program" +SRC_URI="ftp://sporadic.stanford.edu/pub/${P}.tar.gz" +HOMEPAGE="http://www.gnu.org/software/gnugo/devel.html" + +KEYWORDS="~x86 ~ppc" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.2-r3" + +src_compile() { + egamesconf --enable-cache-size=32 || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" + dodoc AUTHORS ChangeLog INSTALL NEWS README THANKS TODO + prepgamesdirs +} |