summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2004-03-12 17:25:07 +0000
committerMarinus Schraal <foser@gentoo.org>2004-03-12 17:25:07 +0000
commitd024202fd18d25cfa2c8687d2b26d3bdbfbf2d73 (patch)
tree539a04a9499a9599fd130e737c7c2e510ebba06a /net-irc
parentversion bump (Manifest recommit) (diff)
downloadgentoo-2-d024202fd18d25cfa2c8687d2b26d3bdbfbf2d73.tar.gz
gentoo-2-d024202fd18d25cfa2c8687d2b26d3bdbfbf2d73.tar.bz2
gentoo-2-d024202fd18d25cfa2c8687d2b26d3bdbfbf2d73.zip
mark 2.0.7 x86, cleanout old stuff
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/xchat/files/digest-xchat-2.0.3-r11
-rw-r--r--net-irc/xchat/files/digest-xchat-2.0.41
-rw-r--r--net-irc/xchat/files/digest-xchat-2.0.5-r11
-rw-r--r--net-irc/xchat/files/xc205-fix-emptyword.diff16
-rw-r--r--net-irc/xchat/files/xc205-fix64bit.diff47
-rw-r--r--net-irc/xchat/files/xchat-2.0.3-fix_cps.patch11
-rw-r--r--net-irc/xchat/files/xchat-2.0.3-fix_tint.patch22
-rw-r--r--net-irc/xchat/xchat-2.0.3-r1.ebuild73
-rw-r--r--net-irc/xchat/xchat-2.0.4.ebuild76
-rw-r--r--net-irc/xchat/xchat-2.0.5-r1.ebuild82
-rw-r--r--net-irc/xchat/xchat-2.0.7.ebuild4
11 files changed, 2 insertions, 332 deletions
diff --git a/net-irc/xchat/files/digest-xchat-2.0.3-r1 b/net-irc/xchat/files/digest-xchat-2.0.3-r1
deleted file mode 100644
index 52de16838138..000000000000
--- a/net-irc/xchat/files/digest-xchat-2.0.3-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8a7a981bf2401e09efdfe278713a2c6c xchat-2.0.3.tar.bz2 812511
diff --git a/net-irc/xchat/files/digest-xchat-2.0.4 b/net-irc/xchat/files/digest-xchat-2.0.4
deleted file mode 100644
index e6fcbb41a979..000000000000
--- a/net-irc/xchat/files/digest-xchat-2.0.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 bd987cd3b49cc16e875cfd8cb9b77c29 xchat-2.0.4.tar.bz2 879080
diff --git a/net-irc/xchat/files/digest-xchat-2.0.5-r1 b/net-irc/xchat/files/digest-xchat-2.0.5-r1
deleted file mode 100644
index 1b857ff4f118..000000000000
--- a/net-irc/xchat/files/digest-xchat-2.0.5-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8a594ed57287a9fb212425ecba8d5401 xchat-2.0.5.tar.bz2 902581
diff --git a/net-irc/xchat/files/xc205-fix-emptyword.diff b/net-irc/xchat/files/xc205-fix-emptyword.diff
deleted file mode 100644
index 3d1a1720a184..000000000000
--- a/net-irc/xchat/files/xc205-fix-emptyword.diff
+++ /dev/null
@@ -1,16 +0,0 @@
-# fix skiping of "" in word[] array.
-# Side effect: fixes DCC RESUME with mIRC >= 6.1
---- xchat-2.0.5/src/common/outbound.c 2003-09-05 21:12:52.000000000 +1000
-+++ xchat-2.0.6/src/common/outbound.c 2003-10-16 14:00:52.000000000 +1000
-@@ -185,8 +185,10 @@
- if (!handle_quotes)
- goto def;
- if (quote)
-+ {
- quote = FALSE;
-- else
-+ space = FALSE;
-+ } else
- quote = TRUE;
- cmd++;
- break;
diff --git a/net-irc/xchat/files/xc205-fix64bit.diff b/net-irc/xchat/files/xc205-fix64bit.diff
deleted file mode 100644
index f41f760e2872..000000000000
--- a/net-irc/xchat/files/xc205-fix64bit.diff
+++ /dev/null
@@ -1,47 +0,0 @@
-# fixes 64bit issues (where a pointer to int was given, instead of gsize).
---- xchat-2.0.5/src/common/server.c 2003-08-11 01:40:15.000000000 +1000
-+++ xchat-2.0.6/src/common/server.c 2003-10-07 14:54:26.000000000 +1000
-@@ -289,8 +289,8 @@
- {
- char *conv_line; /* holds a copy of the original string */
- int conv_len; /* tells g_convert how much of line to convert */
-- int utf_len;
-- int read_len;
-+ gsize utf_len;
-+ gsize read_len;
- GError *err;
- gboolean retry;
-
---- xchat-2.0.5/src/common/text.c 2003-09-21 20:36:15.000000000 +1000
-+++ xchat-2.0.6/src/common/text.c 2003-10-07 15:01:06.000000000 +1000
-@@ -446,7 +446,7 @@
- get_stamp_str (char *fmt, time_t tim, char **ret)
- {
- char dest[128];
-- int len;
-+ gsize len;
-
- len = strftime (dest, sizeof (dest), fmt, localtime (&tim));
- if (len)
---- xchat-2.0.5/src/fe-gtk/xtext.c 2003-09-18 15:26:52.000000000 +1000
-+++ xchat-2.0.6/src/fe-gtk/xtext.c 2003-10-07 14:57:14.000000000 +1000
-@@ -2126,6 +2126,7 @@
- char *stripped;
- guchar *new_text;
- int len;
-+ gsize glen;
-
- stripped = gtk_xtext_selection_get_text (xtext, &len);
- if (!stripped)
-@@ -2158,9 +2159,9 @@
- }
- break;
- default:
-- new_text = g_locale_from_utf8 (stripped, len, NULL, &len, NULL);
-+ new_text = g_locale_from_utf8 (stripped, len, NULL, &glen, NULL);
- gtk_selection_data_set (selection_data_ptr, GDK_SELECTION_TYPE_STRING,
-- 8, new_text, len);
-+ 8, new_text, glen);
- g_free (new_text);
- }
-
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
deleted file mode 100644
index fc1c8b98a1b2..000000000000
--- a/net-irc/xchat/files/xchat-2.0.3-fix_cps.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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/files/xchat-2.0.3-fix_tint.patch b/net-irc/xchat/files/xchat-2.0.3-fix_tint.patch
deleted file mode 100644
index ea8f315299bd..000000000000
--- a/net-irc/xchat/files/xchat-2.0.3-fix_tint.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- xchat-2.0.3/src/fe-gtk/xtext.c 18 Jun 2003 08:01:23 -0000
-+++ xchat-2.0.3p1/src/fe-gtk/xtext.c 29 Jun 2003 11:38:04 -0000
-@@ -910,6 +910,9 @@
- xtext_set_bg (xtext, xtext->fgc, 19);
- xtext_set_fg (xtext, xtext->bgc, 19);
-
-+ /* draw directly to window */
-+ xtext->draw_buf = widget->window;
-+
- #if defined(USE_XLIB) || defined(WIN32)
- if (xtext->transparent)
- {
-@@ -930,9 +933,6 @@
- #endif
-
- gdk_window_set_back_pixmap (widget->window, NULL, FALSE);
--
-- /* draw directly to window */
-- xtext->draw_buf = widget->window;
-
- backend_init (xtext);
- }
diff --git a/net-irc/xchat/xchat-2.0.3-r1.ebuild b/net-irc/xchat/xchat-2.0.3-r1.ebuild
deleted file mode 100644
index 449f14b0801c..000000000000
--- a/net-irc/xchat/xchat-2.0.3-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.0.3-r1.ebuild,v 1.10 2004/01/04 01:34:08 pyrania Exp $
-
-inherit eutils
-
-DESCRIPTION="X-Chat is a graphical IRC client for UNIX operating systems."
-SRC_URI="http://www.xchat.org/files/source/2.0/${P}.tar.bz2"
-HOMEPAGE="http://www.xchat.org/"
-
-LICENSE="GPL-2"
-SLOT="2"
-KEYWORDS="x86 ~ppc sparc alpha"
-IUSE="perl tcltk python ssl gtk mmx ipv6 nls"
-
-# Added for to fix a sparc seg fault issue by Jason Wever <weeve@gentoo.org>
-if [ ${ARCH} = "sparc" ]
-then
- replace-flags "-O3" "-O2"
-fi
-
-RDEPEND=">=dev-libs/glib-2.0.3
- gtk? ( >=x11-libs/gtk+-2.0.3 )
- perl? ( >=dev-lang/perl-5.6.1 )
- ssl? ( >=dev-libs/openssl-0.9.6d )
- python? ( dev-lang/python )
- tcltk? ( dev-lang/tcl )
- nls? ( sys-devel/gettext )"
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.7"
-
-src_unpack() {
- unpack ${A}
-
- # fixes mmx problem
- epatch ${FILESDIR}/${P}-fix_tint.patch
- # fix dcc cps calculation
- epatch ${FILESDIR}/${P}-fix_cps.patch
-}
-
-src_compile() {
- # xchat's configure script uses sys.path to find library path
- # instead of python-config (#25943)
- unset PYTHONPATH
-
- econf \
- `use_enable gtk gtkfe` \
- `use_enable ssl openssl` \
- `use_enable perl` \
- `use_enable python` \
- `use_enable tcltk tcl` \
- `use_enable mmx` \
- `use_enable ipv6` \
- `use_enable nls` \
- --program-suffix=-2 \
- || die "Configure failed"
-
- MAKEOPTS="-j1" emake || die "Compile failed"
-}
-
-src_install() {
- # some magic to create a menu entry for xchat 2
- mv xchat.desktop xchat.desktop.old
- sed -e "s:Exec=xchat:Exec=xchat-2:" -e "s:Name=XChat IRC:Name=XChat 2 IRC:" xchat.desktop.old > xchat.desktop
-
- einstall install || die "Install failed"
-
- # install plugin development header
- insinto /usr/include/xchat
- doins src/common/xchat-plugin.h
-
- dodoc AUTHORS COPYING ChangeLog README*
-}
diff --git a/net-irc/xchat/xchat-2.0.4.ebuild b/net-irc/xchat/xchat-2.0.4.ebuild
deleted file mode 100644
index 597f2322f2e2..000000000000
--- a/net-irc/xchat/xchat-2.0.4.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.0.4.ebuild,v 1.15 2004/01/04 01:34:08 pyrania Exp $
-
-inherit eutils
-
-DESCRIPTION="X-Chat is a graphical IRC client for UNIX operating systems."
-SRC_URI="http://www.xchat.org/files/source/2.0/${P}.tar.bz2"
-HOMEPAGE="http://www.xchat.org/"
-
-LICENSE="GPL-2"
-SLOT="2"
-KEYWORDS="x86 ~ppc ~sparc ~alpha hppa"
-IUSE="perl tcltk python ssl mmx ipv6 nls"
-# Local use flag for the text frontend (bug #26427)
-IUSE="${IUSE} xchattext xchatnogtk"
-
-# Added for to fix a sparc seg fault issue by Jason Wever <weeve@gentoo.org>
-if [ ${ARCH} = "sparc" ]
-then
- replace-flags "-O3" "-O2"
-fi
-
-
-RDEPEND=">=dev-libs/glib-2.0.3
- !xchatnogtk? ( >=x11-libs/gtk+-2.0.3 )
- perl? ( >=dev-lang/perl-5.6.1 )
- ssl? ( >=dev-libs/openssl-0.9.6d )
- python? ( dev-lang/python )
- tcltk? ( dev-lang/tcl )
- nls? ( sys-devel/gettext )"
-
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.7"
-
-src_compile() {
- # xchat's configure script uses sys.path to find library path
- # instead of python-config (#25943)
- unset PYTHONPATH
-
- # test for local usage of xchatnogtk
- local gtkconf
- use xchatnogtk \
- && gtkconf="--disable-gtkfe" \
- || gtkconf="--enable-gtkfe"
-
- econf \
- ${gtkconf} \
- `use_enable ssl openssl` \
- `use_enable perl` \
- `use_enable python` \
- `use_enable tcltk tcl` \
- `use_enable mmx` \
- `use_enable ipv6` \
- `use_enable nls` \
- `use_enable xchattext textfe` \
- --program-suffix=-2 \
- || die "Configure failed"
-
- MAKEOPTS="-j1" emake || die "Compile failed"
-}
-
-src_install() {
- # some magic to create a menu entry for xchat 2
- mv xchat.desktop xchat.desktop.old
- sed -e "s:Exec=xchat:Exec=xchat-2:" -e "s:Name=XChat IRC:Name=XChat 2 IRC:" xchat.desktop.old > xchat.desktop
-
- einstall install || die "Install failed"
-
- # install plugin development header
- insinto /usr/include/xchat
- doins src/common/xchat-plugin.h
-
- dodoc AUTHORS COPYING ChangeLog README*
-}
-
diff --git a/net-irc/xchat/xchat-2.0.5-r1.ebuild b/net-irc/xchat/xchat-2.0.5-r1.ebuild
deleted file mode 100644
index 347f0d84086c..000000000000
--- a/net-irc/xchat/xchat-2.0.5-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.0.5-r1.ebuild,v 1.4 2004/01/05 19:54:36 weeve Exp $
-
-inherit eutils
-
-DESCRIPTION="Graphical IRC client"
-SRC_URI="http://www.xchat.org/files/source/2.0/${P}.tar.bz2"
-HOMEPAGE="http://www.xchat.org/"
-
-LICENSE="GPL-2"
-SLOT="2"
-KEYWORDS="x86 ~ppc sparc ~alpha ~hppa ~amd64"
-IUSE="perl tcltk python ssl mmx ipv6 nls"
-# Local use flag for the text frontend (bug #26427)
-IUSE="${IUSE} xchattext xchatnogtk"
-
-# Added for to fix a sparc seg fault issue by Jason Wever <weeve@gentoo.org>
-if [ ${ARCH} = "sparc" ]
-then
- replace-flags "-O3" "-O2"
-fi
-
-
-RDEPEND=">=dev-libs/glib-2.0.3
- !xchatnogtk? ( >=x11-libs/gtk+-2.0.3 )
- perl? ( >=dev-lang/perl-5.6.1 )
- ssl? ( >=dev-libs/openssl-0.9.6d )
- python? ( dev-lang/python )
- tcltk? ( dev-lang/tcl )
- nls? ( sys-devel/gettext )"
-
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.7"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/xc205-fix-emptyword.diff
- epatch ${FILESDIR}/xc205-fix64bit.diff
-}
-
-src_compile() {
- # xchat's configure script uses sys.path to find library path
- # instead of python-config (#25943)
- unset PYTHONPATH
-
- # test for local usage of xchatnogtk
- local gtkconf
- use xchatnogtk \
- && gtkconf="--disable-gtkfe" \
- || gtkconf="--enable-gtkfe"
-
- econf \
- ${gtkconf} \
- `use_enable ssl openssl` \
- `use_enable perl` \
- `use_enable python` \
- `use_enable tcltk tcl` \
- `use_enable mmx` \
- `use_enable ipv6` \
- `use_enable nls` \
- `use_enable xchattext textfe` \
- --program-suffix=-2 \
- || die "Configure failed"
-
- MAKEOPTS="-j1" emake || die "Compile failed"
-}
-
-src_install() {
- # some magic to create a menu entry for xchat 2
- mv xchat.desktop xchat.desktop.old
- sed -e "s:Exec=xchat:Exec=xchat-2:" -e "s:Name=XChat IRC:Name=XChat 2 IRC:" xchat.desktop.old > xchat.desktop
-
- einstall install || die "Install failed"
-
- # install plugin development header
- insinto /usr/include/xchat
- doins src/common/xchat-plugin.h
-
- dodoc AUTHORS COPYING ChangeLog README*
-}
diff --git a/net-irc/xchat/xchat-2.0.7.ebuild b/net-irc/xchat/xchat-2.0.7.ebuild
index f10d8da47ef0..91e23a83feb1 100644
--- a/net-irc/xchat/xchat-2.0.7.ebuild
+++ b/net-irc/xchat/xchat-2.0.7.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.0.7.ebuild,v 1.4 2004/01/22 15:51:07 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.0.7.ebuild,v 1.5 2004/03/12 17:25:07 foser Exp $
inherit flag-o-matic
@@ -10,7 +10,7 @@ HOMEPAGE="http://www.xchat.org/"
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="~x86 ~sparc ~hppa ~ppc alpha ~amd64 ia64"
+KEYWORDS="x86 ~sparc ~hppa ~ppc alpha ~amd64 ia64"
IUSE="perl tcltk python ssl mmx ipv6 nls"
# Local use flag for the text frontend (bug #26427)
IUSE="${IUSE} xchattext xchatnogtk"