diff options
-rw-r--r-- | games-board/qgo/ChangeLog | 8 | ||||
-rw-r--r-- | games-board/qgo/Manifest | 3 | ||||
-rw-r--r-- | games-board/qgo/files/0.2.2-gcc.patch | 24 | ||||
-rw-r--r-- | games-board/qgo/files/digest-qgo-0.2.2 | 1 | ||||
-rw-r--r-- | games-board/qgo/qgo-0.2.2.ebuild | 30 |
5 files changed, 65 insertions, 1 deletions
diff --git a/games-board/qgo/ChangeLog b/games-board/qgo/ChangeLog index 383429ead791..58937ff7529a 100644 --- a/games-board/qgo/ChangeLog +++ b/games-board/qgo/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-board/qgo # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/qgo/ChangeLog,v 1.6 2004/07/05 20:54:12 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/qgo/ChangeLog,v 1.7 2004/10/19 22:55:57 mr_bones_ Exp $ + +*qgo-0.2.2 (19 Oct 2004) + + 19 Oct 2004; Michael Sterrett <mr_bones_@gentoo.org> +files/0.2.2-gcc.patch, + +qgo-0.2.2.ebuild: + version bump *qgo-0.2.1 (05 Jul 2004) diff --git a/games-board/qgo/Manifest b/games-board/qgo/Manifest index 92addbcb9264..2548e4296802 100644 --- a/games-board/qgo/Manifest +++ b/games-board/qgo/Manifest @@ -3,8 +3,11 @@ MD5 7be057a9771e6eb03103063d47a366b8 metadata.xml 388 MD5 e67a1b08230b96533ea90bf673b46ae9 qgo-0.1.3.ebuild 704 MD5 ab25643f8cb75acf678dd8dc2d42977f qgo-0.2.ebuild 628 MD5 b771e5b2711b67f91d799ac5391763a7 qgo-0.2.1.ebuild 772 +MD5 5847f507a8fa81498511724e5a6de4a5 qgo-0.2.2.ebuild 775 MD5 5a2efa67c8d2fe8776b7989246d2d620 files/digest-qgo-0.2 60 MD5 ea7f21cf900889be2ff0f258234dab0d files/digest-qgo-0.1.3 62 MD5 2a837656c7ecb43d16a6fafb211e94bd files/digest-qgo-0.2.1 62 MD5 c8d87e22089221af58773e0115d51003 files/0.2-gcc.patch 520 MD5 c8d87e22089221af58773e0115d51003 files/0.2.1-gcc.patch 520 +MD5 ff7cfb7f58299a4302de40ad6c385127 files/digest-qgo-0.2.2 65 +MD5 c8d87e22089221af58773e0115d51003 files/0.2.2-gcc.patch 520 diff --git a/games-board/qgo/files/0.2.2-gcc.patch b/games-board/qgo/files/0.2.2-gcc.patch new file mode 100644 index 000000000000..0d113732b156 --- /dev/null +++ b/games-board/qgo/files/0.2.2-gcc.patch @@ -0,0 +1,24 @@ +--- qgo-0.2/qgo/src/wavfile.c.orig 2004-06-08 09:20:12.783379736 -0400 ++++ qgo-0.2/qgo/src/wavfile.c 2004-06-08 09:20:25.304476240 -0400 +@@ -134,6 +134,10 @@ + static char emsg[2048]; + + ++static void ++_v_erf(const char *format,va_list ap) { ++ vsprintf(emsg,format,ap); /* Capture message into emsg[] */ ++} + + /* + * Error reporting function for this source module: +@@ -150,10 +154,6 @@ + } + + +-static void +-_v_erf(const char *format,va_list ap) { +- vsprintf(emsg,format,ap); /* Capture message into emsg[] */ +-} + + + diff --git a/games-board/qgo/files/digest-qgo-0.2.2 b/games-board/qgo/files/digest-qgo-0.2.2 new file mode 100644 index 000000000000..28eaffedfe45 --- /dev/null +++ b/games-board/qgo/files/digest-qgo-0.2.2 @@ -0,0 +1 @@ +MD5 4483bebd46ceda203b0cbad35da0a624 qgo-0.2.2-b3.tar.gz 1751040 diff --git a/games-board/qgo/qgo-0.2.2.ebuild b/games-board/qgo/qgo-0.2.2.ebuild new file mode 100644 index 000000000000..fa251434263d --- /dev/null +++ b/games-board/qgo/qgo-0.2.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/qgo/qgo-0.2.2.ebuild,v 1.1 2004/10/19 22:55:57 mr_bones_ Exp $ + +inherit kde-functions eutils +need-qt 3 + +DESCRIPTION="A c++/qt go client and sgf editor" +HOMEPAGE="http://qgo.sourceforge.net/" +SRC_URI="mirror://sourceforge/qgo/${P}-b3.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc" +IUSE="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PV}-gcc.patch" + sed -i \ + -e 's:Horizontal Spacing2:_HorizontalSpacing2:' \ + `find qgo/src -iname '*.ui' -type f` \ + || die "fixing ui files failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc qgo/README ChangeLog TODO +} |