blob: 12fa6d323137bd4638f0fabe6321e4f69ce521f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.0.6-r2.ebuild,v 1.5 2004/06/24 23:10:12 agriffis Exp $
inherit flag-o-matic 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_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"
# Fix for sock5 vulnerability - see 46856
epatch ${FILESDIR}/xc208-fixsocks5.diff
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"
emake -j1 || 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*
}
src_unpack() {
unpack ${A}
cd ${S}
# (Dec 12 2003 solar@gentoo) Bug #35623
# fix malformed dcc send bug.
# discovered by lloydbates Martin Wienold of University of Dortmund - Germany in #gentoo/#gentoo.de
# orig patch credits go to jcdutton
# secondary patch credits go to rac@gentoo which process the malformed dcc requests accordingly.
epatch ${FILESDIR}/${PN}-2.0.6-fix_dccsend.patch
}
|