diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-12-26 23:10:50 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-12-26 23:10:50 +0000 |
commit | 87a55ced25bacab6ea99d32abb3ed1e7245d1057 (patch) | |
tree | eb5430c16f222bc886def9ba1b3b6225a73cc949 /games-board | |
parent | Version bump #69434 by Bryan Duff. (diff) | |
download | historical-87a55ced25bacab6ea99d32abb3ed1e7245d1057.tar.gz historical-87a55ced25bacab6ea99d32abb3ed1e7245d1057.tar.bz2 historical-87a55ced25bacab6ea99d32abb3ed1e7245d1057.zip |
Version bump #69443 by Bryan Duff.
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/ggz-txt-client/ChangeLog | 8 | ||||
-rw-r--r-- | games-board/ggz-txt-client/files/digest-ggz-txt-client-0.0.7 | 1 | ||||
-rw-r--r-- | games-board/ggz-txt-client/files/digest-ggz-txt-client-0.0.9 | 1 | ||||
-rw-r--r-- | games-board/ggz-txt-client/ggz-txt-client-0.0.9.ebuild (renamed from games-board/ggz-txt-client/ggz-txt-client-0.0.7.ebuild) | 18 |
4 files changed, 17 insertions, 11 deletions
diff --git a/games-board/ggz-txt-client/ChangeLog b/games-board/ggz-txt-client/ChangeLog index d6b28faad9af..7306a7c9e6c6 100644 --- a/games-board/ggz-txt-client/ChangeLog +++ b/games-board/ggz-txt-client/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-board/ggz-txt-client # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/ggz-txt-client/ChangeLog,v 1.3 2004/06/24 22:17:01 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/ggz-txt-client/ChangeLog,v 1.4 2004/12/26 23:10:50 vapier Exp $ + +*ggz-txt-client-0.0.9 (26 Dec 2004) + + 26 Dec 2004; Mike Frysinger <vapier@gentoo.org> + -ggz-txt-client-0.0.7.ebuild, +ggz-txt-client-0.0.9.ebuild: + Version bump #69443 by Bryan Duff. *ggz-txt-client-0.0.7 (10 Jul 2003) diff --git a/games-board/ggz-txt-client/files/digest-ggz-txt-client-0.0.7 b/games-board/ggz-txt-client/files/digest-ggz-txt-client-0.0.7 deleted file mode 100644 index 7c75244d3670..000000000000 --- a/games-board/ggz-txt-client/files/digest-ggz-txt-client-0.0.7 +++ /dev/null @@ -1 +0,0 @@ -MD5 070f4706b016cbcdab1346a50bfb6093 ggz-txt-client-0.0.7.tar.gz 127982 diff --git a/games-board/ggz-txt-client/files/digest-ggz-txt-client-0.0.9 b/games-board/ggz-txt-client/files/digest-ggz-txt-client-0.0.9 new file mode 100644 index 000000000000..5b4e700aab58 --- /dev/null +++ b/games-board/ggz-txt-client/files/digest-ggz-txt-client-0.0.9 @@ -0,0 +1 @@ +MD5 c9ef37dd4b8c2679f9136cdf4f714b76 ggz-txt-client-0.0.9.tar.gz 132926 diff --git a/games-board/ggz-txt-client/ggz-txt-client-0.0.7.ebuild b/games-board/ggz-txt-client/ggz-txt-client-0.0.9.ebuild index 40077dfe6db9..fe00914710d5 100644 --- a/games-board/ggz-txt-client/ggz-txt-client-0.0.7.ebuild +++ b/games-board/ggz-txt-client/ggz-txt-client-0.0.9.ebuild @@ -1,28 +1,28 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/ggz-txt-client/ggz-txt-client-0.0.7.ebuild,v 1.4 2004/06/24 22:17:01 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/ggz-txt-client/ggz-txt-client-0.0.9.ebuild,v 1.1 2004/12/26 23:10:50 vapier Exp $ DESCRIPTION="The textbased client for GGZ Gaming Zone" HOMEPAGE="http://ggz.sourceforge.net/" -SRC_URI="mirror://sourceforge/ggz/${P}.tar.gz" +SRC_URI="http://ftp.ggzgamingzone.org/pub/ggz/${PV}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~ppc" +KEYWORDS="~ppc ~x86" IUSE="" -DEPEND="=dev-games/ggz-client-libs-0.0.7 +DEPEND=">=dev-games/ggz-client-libs-${PV} sys-libs/ncurses sys-libs/readline" -src_compile() { +src_unpack() { + unpack ${A} + cd ${S} sed -i 's:-lreadline:-lreadline -lncurses:' configure - econf || die - echo "#include <locale.h>" >> ggz-txt/game.h - emake || die + sed -i 's:dir=$(prefix):dir=$(DESTDIR)$(prefix):' po/Makefile.in } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die dodoc AUTHORS ChangeLog INSTALL NEWS QuickStart.GGZ README* TODO } |