diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-07-08 16:37:52 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-07-08 16:37:52 +0000 |
commit | 792c38480600917cd9ffb53dc8869b779f0a2f4d (patch) | |
tree | bd06358a03584bcff42fe12d06b6e25e778f6fee /net-irc | |
parent | added dcc patch (diff) | |
download | historical-792c38480600917cd9ffb53dc8869b779f0a2f4d.tar.gz historical-792c38480600917cd9ffb53dc8869b779f0a2f4d.tar.bz2 historical-792c38480600917cd9ffb53dc8869b779f0a2f4d.zip |
added dcc patch
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/xchat/Manifest | 6 | ||||
-rw-r--r-- | net-irc/xchat/files/digest-xchat-2.0.3-r1 (renamed from net-irc/xchat/files/digest-xchat-2.0.3) | 0 | ||||
-rw-r--r-- | net-irc/xchat/files/xchat-2.0.3-fix_cps.patch | 11 | ||||
-rw-r--r-- | net-irc/xchat/xchat-2.0.3-r1.ebuild (renamed from net-irc/xchat/xchat-2.0.3.ebuild) | 4 |
4 files changed, 16 insertions, 5 deletions
diff --git a/net-irc/xchat/Manifest b/net-irc/xchat/Manifest index 086df5768d43..bab7eb27d3b0 100644 --- a/net-irc/xchat/Manifest +++ b/net-irc/xchat/Manifest @@ -1,15 +1,13 @@ MD5 e533d379622f911ced2832e22263f31b xchat-2.0.1.ebuild 1982 -MD5 34616906669d508783738853a01d374b xchat-2.0.3.ebuild 2098 MD5 5e5d21a6b4e47c04f504c69b4272b029 xchat-1.8.11.ebuild 2285 MD5 d4b23b8ff3dd54a2ca5560884c64bf7f xchat-2.0.0.ebuild 1909 MD5 38c72021ed0c065d4973a36211d31e19 xchat-2.0.2-r2.ebuild 2130 MD5 d6896c2421454aab5a0cefef7bed9946 xchat-1.8.10-r1.ebuild 2307 -MD5 1bb0a95ca1779ea456ffc2003d55ce90 ChangeLog 8264 +MD5 07160b8293d7bad73df0a552952d8001 ChangeLog 8264 MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 -MD5 1801dda38d9c2d4d60780a414d6b89e1 xchat-2.0.3-r1.ebuild 2164 +MD5 1e166dba032ec5bca0f47e13351f37ed xchat-2.0.3-r1.ebuild 2167 MD5 acbd4afdd7d00bceb3816147eb508e4b files/digest-xchat-2.0.0 64 MD5 1ee812a2b3e28e3866413e75a80ff983 files/digest-xchat-2.0.1 64 -MD5 f5c539e05a29071298f3d580fb1a3c72 files/digest-xchat-2.0.3 64 MD5 a8f607d224408d4a27777d2ffce8beac files/xc1811fixststint.diff 422 MD5 e470c6b909112da5b80be6880e56c8c3 files/xchat-2.0.3-fix_cps.patch 438 MD5 579cf7b7098f443691fcd6e3e41acba2 files/xc202-fixurlg.diff 510 diff --git a/net-irc/xchat/files/digest-xchat-2.0.3 b/net-irc/xchat/files/digest-xchat-2.0.3-r1 index 52de16838138..52de16838138 100644 --- a/net-irc/xchat/files/digest-xchat-2.0.3 +++ b/net-irc/xchat/files/digest-xchat-2.0.3-r1 diff --git a/net-irc/xchat/files/xchat-2.0.3-fix_cps.patch b/net-irc/xchat/files/xchat-2.0.3-fix_cps.patch new file mode 100644 index 000000000000..fc1c8b98a1b2 --- /dev/null +++ b/net-irc/xchat/files/xchat-2.0.3-fix_cps.patch @@ -0,0 +1,11 @@ +--- xchat-2.0.3/src/common/dcc.c 2003-06-16 22:54:37.000000000 +1000 ++++ xchat-2.0.3p1/src/common/dcc.c 2003-07-07 19:04:48.000000000 +1000 +@@ -129,7 +129,7 @@ + if (dcc->type == TYPE_SEND) + { + /* carefull to avoid 32bit overflow */ +- pos = dcc->pos + ((dcc->pos - dcc->ack) / 2); ++ pos = dcc->pos - ((dcc->pos - dcc->ack) / 2); + glob_throttle_bit = 0x1; + cpssum = &dcc_sendcpssum; + glob_limit = prefs.dcc_global_max_send_cps; diff --git a/net-irc/xchat/xchat-2.0.3.ebuild b/net-irc/xchat/xchat-2.0.3-r1.ebuild index 46aeae109067..1ece09d2fd93 100644 --- a/net-irc/xchat/xchat-2.0.3.ebuild +++ b/net-irc/xchat/xchat-2.0.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.0.3.ebuild,v 1.1 2003/06/29 14:43:00 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.0.3-r1.ebuild,v 1.1 2003/07/08 16:37:41 foser Exp $ inherit eutils @@ -30,6 +30,8 @@ src_unpack() { # fixes mmx problem epatch ${FILESDIR}/${P}-fix_tint.patch + # fix dcc cps calculation + epatch ${FILESDIR}/${P}-fix_cps.patch } |