blob: 0a3cce2bb9a72d8988087b837d801049d6505fed (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.3.ebuild,v 1.2 2012/10/20 15:33:39 pinkbyte Exp $
EAPI=4
inherit eutils gnome2 versionator
DESCRIPTION="Graphical IRC client based on XChat"
SRC_URI="https://github.com/downloads/hexchat/hexchat/${P}.tar.xz"
HOMEPAGE="http://www.hexchat.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
IUSE="dbus fastscroll +gtk ipv6 libnotify nls ntlm perl python spell ssl tcl"
RDEPEND="dev-libs/glib:2
x11-libs/pango
dbus? ( >=dev-libs/dbus-glib-0.98 )
gtk? ( x11-libs/gtk+:2 )
libnotify? ( x11-libs/libnotify )
ntlm? ( net-libs/libntlm )
perl? ( >=dev-lang/perl-5.8.0 )
python? ( =dev-lang/python-2* )
tcl? ( dev-lang/tcl )
spell? ( app-text/gtkspell:2 )
ssl? ( >=dev-libs/openssl-0.9.8u )"
DEPEND="${RDEPEND}
sys-devel/gettext
virtual/pkgconfig"
DOCS="ChangeLog README"
pkg_setup() {
# Added for to fix a sparc seg fault issue by Jason Wever <weeve@gentoo.org>
if [[ ${ARCH} = sparc ]] ; then
replace-flags "-O[3-9]" "-O2"
fi
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.9.1-input-box.patch \
"${FILESDIR}"/${PN}-2.9.3-cflags.patch
# use $libdir/hexchat/plugins as the plugin directory
if [[ $(get_libdir) != "lib" ]] ; then
sed -e 's:${prefix}/lib/hexchat:${libdir}/hexchat:' \
-i configure.ac || die 'sed failed'
fi
# QA: remove deprecated line from desktop file
sed -e '/Encoding=UTF-8/d' -i ${PN}.desktop || die 'sed failed'
./autogen.sh
}
src_configure() {
econf --enable-shm \
$(use_enable dbus) \
$(use_enable ipv6) \
$(use_enable nls) \
$(use_enable ntlm) \
$(use_enable perl) \
$(use_enable python) \
$(use_enable spell spell gtkspell) \
$(use_enable ssl openssl) \
$(use_enable tcl) \
$(use_enable gtk gtkfe) \
$(use_enable !gtk textfe) \
$(use_enable fastscroll xft)
}
src_install() {
default
prune_libtool_files --all
# install plugin development header
insinto /usr/include/hexchat
doins src/common/xchat-plugin.h
# remove useless desktop entry when gtk USE flag is unset
if ! use gtk ; then
rm "${ED}"/usr/share/applications -rf
fi
}
pkg_postinst() {
if use !gtk ; then
elog "You have disabled the gtk USE flag. This means you don't have"
elog "the GTK-GUI for HexChat but only a text interface called \"hexchat-text\"."
fi
gnome2_icon_cache_update
}
|