diff options
author | Ben de Groot <yngwin@gentoo.org> | 2012-10-15 07:14:38 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2012-10-15 07:14:38 +0000 |
commit | 5d18457feae8dd8aeffb08bdeab2abfc942fa6db (patch) | |
tree | dbde5e07f1824330111760f2531eea73278eaca5 /net-irc | |
parent | Add jpeg use flag. (diff) | |
download | gentoo-2-5d18457feae8dd8aeffb08bdeab2abfc942fa6db.tar.gz gentoo-2-5d18457feae8dd8aeffb08bdeab2abfc942fa6db.tar.bz2 gentoo-2-5d18457feae8dd8aeffb08bdeab2abfc942fa6db.zip |
Remove unneeded dep blocker. Version bump.
(Portage version: 2.2.0_alpha138/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/hexchat/ChangeLog | 8 | ||||
-rw-r--r-- | net-irc/hexchat/hexchat-2.9.1.ebuild | 3 | ||||
-rw-r--r-- | net-irc/hexchat/hexchat-2.9.2.ebuild | 95 |
3 files changed, 103 insertions, 3 deletions
diff --git a/net-irc/hexchat/ChangeLog b/net-irc/hexchat/ChangeLog index bc6fb2a43a30..b1451b6ec484 100644 --- a/net-irc/hexchat/ChangeLog +++ b/net-irc/hexchat/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-irc/hexchat # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.8 2012/10/02 02:25:18 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.9 2012/10/15 07:14:38 yngwin Exp $ + +*hexchat-2.9.2 (15 Oct 2012) + + 15 Oct 2012; Ben de Groot <yngwin@gentoo.org> +hexchat-2.9.2.ebuild, + hexchat-2.9.1.ebuild: + Remove unneeded dep blocker. Version bump. 02 Oct 2012; Anthony G. Basile <blueness@gentoo.org> hexchat-2.9.1.ebuild: keyword ~arm, bug #435872 diff --git a/net-irc/hexchat/hexchat-2.9.1.ebuild b/net-irc/hexchat/hexchat-2.9.1.ebuild index bd337c8b7436..4b6cef8c89bf 100644 --- a/net-irc/hexchat/hexchat-2.9.1.ebuild +++ b/net-irc/hexchat/hexchat-2.9.1.ebuild @@ -1,6 +1,6 @@ # 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.1.ebuild,v 1.8 2012/10/02 02:25:18 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.1.ebuild,v 1.9 2012/10/15 07:14:38 yngwin Exp $ EAPI=4 @@ -17,7 +17,6 @@ IUSE="dbus fastscroll +gtk ipv6 libnotify mmx nls ntlm perl python spell ssl tcl RDEPEND=">=dev-libs/glib-2.6.0:2 x11-libs/pango - !<net-irc/xchat-gnome-0.9 dbus? ( >=dev-libs/dbus-glib-0.71 ) gtk? ( >=x11-libs/gtk+-2.10.0:2 ) libnotify? ( x11-libs/libnotify ) diff --git a/net-irc/hexchat/hexchat-2.9.2.ebuild b/net-irc/hexchat/hexchat-2.9.2.ebuild new file mode 100644 index 000000000000..00eb04386b35 --- /dev/null +++ b/net-irc/hexchat/hexchat-2.9.2.ebuild @@ -0,0 +1,95 @@ +# 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.2.ebuild,v 1.1 2012/10/15 07:14:38 yngwin 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" +IUSE="dbus fastscroll +gtk ipv6 libnotify mmx nls ntlm perl python spell ssl tcl" + +RDEPEND=">=dev-libs/glib-2.6.0:2 + x11-libs/pango + dbus? ( >=dev-libs/dbus-glib-0.71 ) + gtk? ( >=x11-libs/gtk+-2.10.0: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.6d )" +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.8.8-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.in || 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 mmx) \ + $(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 +} |