blob: a540ab554d42072798c23b8a7a3591c49013f745 (
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
95
96
97
98
|
# Copyright 1999-2002 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-1.9.6.ebuild,v 1.1 2002/11/26 12:08:32 foser Exp $
inherit eutils
IUSE="perl gnome ssl gtk python mmx ipv6 nls kde"
S=${WORKDIR}/${P}
DESCRIPTION="X-Chat is a graphical IRC client for UNIX operating systems."
SRC_URI="http://www.xchat.org/files/source/1.9/${P}.tar.bz2"
HOMEPAGE="http://www.xchat.org/"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~x86 ~ppc ~sparc ~sparc64"
RDEPEND=">=dev-libs/glib-2.0.4
>=x11-libs/gtk+-2.0.5
perl? ( >=sys-devel/perl-5.6.1 )
gnome? ( >=x11-libs/libzvt-2.0.1
>=gnome-base/libgnome-2.0.1
>=gnome-base/gnome-applets-2.0.0
>=gnome-base/gnome-panel-2.0.1 )
ssl? ( >=dev-libs/openssl-0.9.6d )"
DEPEND="${RDEPEND}
nls? ( >=sys-devel/gettext-0.10.38 )"
# From the xchat 1.9.3 README_FIRST file:
# (one of the) REMAINING PROBLEMS:
# * can't compile with gnome, panel and zvt support *
# stroke
src_compile() {
local myopts myflags
if [ ! `use perl` ] ; then
use gnome \
&& myopts="${myopts} --enable-gnome --enable-panel" \
|| myopts="${myopts} --enable-gtkfe --disable-gnome --disable-zvt"
use gnome \
&& CFLAGS="${CFLAGS} -I/usr/include/orbit-2.0" \
|| myopts="${myopts} --disable-gnome"
fi
use gtk \
&& myopts="${myopts} --enable-gtkfe" \
|| myopts="${myopts} --disable-gtkfe"
use ssl \
&& myopts="${myopts} --enable-openssl" \
|| mypots="${myopts} --disable-openssl"
use perl \
&& myopts="${myopts} --enable-perl" \
|| myopts="${myopts} --disable-perl"
use python \
&& myopts="${myopts} --enable-python" \
|| myopts="${myopts} --disable-python"
use nls \
&& myopts="${myopts} --enable-hebrew --enable-japanese-conv --enable-nls" \
|| myopts="${myopts} --disable-hebrew --enable-japanese-conv --disable-nls"
use mmx \
&& myopts="${myopts} --enable-mmx" \
|| myopts="${myopts} --disable-mmx"
use ipv6 \
&& myopts="${myopts} --enable-ipv6" \
|| myopts="${myopts} --disable-ipv6"
[ -n "${DISABLE_XFT}" ] && myopts="${myopts} --disable-xft"
econf \
--program-suffix=-2 \
${myopts} || die "Configure failed"
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"
dodoc AUTHORS COPYING ChangeLog README
}
pkg_postinst() {
einfo "If you want X-Chat to correctly display Hebrew (bidi) do "
einfo "'export DISABLE_XFT=1' and re-emerge xchat"
}
|