diff options
author | krion <krion@FreeBSD.org> | 2004-08-24 03:01:18 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-08-24 03:01:18 +0800 |
commit | 72b15311c52ef4f51dfcf2d3b644bb26eaf6a7c1 (patch) | |
tree | 2030d0adcc1d9bc1fe495b3412dd8f824d9936f1 | |
parent | 2d2d2a6c48115b2e7e1e44aaf943c93ef9a7c56f (diff) | |
download | freebsd-ports-gnome-72b15311c52ef4f51dfcf2d3b644bb26eaf6a7c1.tar.gz freebsd-ports-gnome-72b15311c52ef4f51dfcf2d3b644bb26eaf6a7c1.tar.zst freebsd-ports-gnome-72b15311c52ef4f51dfcf2d3b644bb26eaf6a7c1.zip |
Update to version 0.2.1
PR: ports/70867
Submitted by: Ports Fury
-rw-r--r-- | games/qgo/Makefile | 2 | ||||
-rw-r--r-- | games/qgo/distinfo | 4 | ||||
-rw-r--r-- | games/qgo/files/patch-qgo::src::mainwin.cpp | 15 |
3 files changed, 18 insertions, 3 deletions
diff --git a/games/qgo/Makefile b/games/qgo/Makefile index 62ff39a45491..57243ca5b4c4 100644 --- a/games/qgo/Makefile +++ b/games/qgo/Makefile @@ -7,7 +7,7 @@ # PORTNAME= qgo -PORTVERSION= 0.2 +PORTVERSION= 0.2.1 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/games/qgo/distinfo b/games/qgo/distinfo index 3b9af8acfce0..e8b163dbdccb 100644 --- a/games/qgo/distinfo +++ b/games/qgo/distinfo @@ -1,2 +1,2 @@ -MD5 (qgo-0.2.tar.gz) = 75da1a2459d20aa02fd8e5306c599a2d -SIZE (qgo-0.2.tar.gz) = 1751448 +MD5 (qgo-0.2.1.tar.gz) = 39b6fbadb2f728257df78a5893613775 +SIZE (qgo-0.2.1.tar.gz) = 1781760 diff --git a/games/qgo/files/patch-qgo::src::mainwin.cpp b/games/qgo/files/patch-qgo::src::mainwin.cpp new file mode 100644 index 000000000000..ec5047338faa --- /dev/null +++ b/games/qgo/files/patch-qgo::src::mainwin.cpp @@ -0,0 +1,15 @@ +--- qgo/src/mainwin.cpp.orig Sat Jun 19 07:38:43 2004 ++++ qgo/src/mainwin.cpp Sun Aug 22 15:55:59 2004 +@@ -1604,10 +1604,10 @@ + //set the params of "who command" + if ((whoBox1->currentItem() >1) || (whoBox2->currentItem() >1)) + { +- wparam.append(whoBox1->currentItem()==1 ? "9p" : whoBox1->currentText()); ++ wparam.append(whoBox1->currentItem()==1 ? QString("9p") : whoBox1->currentText()); + if ((whoBox1->currentItem()) && (whoBox2->currentItem())) + wparam.append("-"); +- wparam.append(whoBox2->currentItem()==1 ? "9p" : whoBox2->currentText()); ++ wparam.append(whoBox2->currentItem()==1 ? QString("9p") : whoBox2->currentText()); + } + else if ((whoBox1->currentItem()) || (whoBox2->currentItem())) + wparam.append("1p-9p"); |