diff options
author | Ben de Groot <yngwin@gentoo.org> | 2012-10-15 14:15:14 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2012-10-15 14:15:14 +0000 |
commit | abad706a1829695fa4b8957b8c1d4aa5802d694d (patch) | |
tree | 36cc4dae84699e439078c5c7998edaa42ed76a6e /net-irc/hexchat | |
parent | Relax xorg-server dependency, bug #433663. (diff) | |
download | gentoo-2-abad706a1829695fa4b8957b8c1d4aa5802d694d.tar.gz gentoo-2-abad706a1829695fa4b8957b8c1d4aa5802d694d.tar.bz2 gentoo-2-abad706a1829695fa4b8957b8c1d4aa5802d694d.zip |
Version bump
(Portage version: 2.2.0_alpha138/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-irc/hexchat')
-rw-r--r-- | net-irc/hexchat/ChangeLog | 8 | ||||
-rw-r--r-- | net-irc/hexchat/files/hexchat-2.9.3-cflags.patch | 17 | ||||
-rw-r--r-- | net-irc/hexchat/hexchat-2.9.3.ebuild | 94 |
3 files changed, 118 insertions, 1 deletions
diff --git a/net-irc/hexchat/ChangeLog b/net-irc/hexchat/ChangeLog index b1451b6ec484..1e2053c210a4 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.9 2012/10/15 07:14:38 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.10 2012/10/15 14:15:14 yngwin Exp $ + +*hexchat-2.9.3 (15 Oct 2012) + + 15 Oct 2012; Ben de Groot <yngwin@gentoo.org> + +files/hexchat-2.9.3-cflags.patch, +hexchat-2.9.3.ebuild: + Version bump *hexchat-2.9.2 (15 Oct 2012) diff --git a/net-irc/hexchat/files/hexchat-2.9.3-cflags.patch b/net-irc/hexchat/files/hexchat-2.9.3-cflags.patch new file mode 100644 index 000000000000..47c878448599 --- /dev/null +++ b/net-irc/hexchat/files/hexchat-2.9.3-cflags.patch @@ -0,0 +1,17 @@ +--- configure.ac ++++ configure.ac +@@ -771,14 +771,6 @@ + if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then + CFLAGS="$CFLAGS -Wall" + fi +- if test "$system" = "Linux" -o "$system" = "FreeBSD"; then +- if test -z "`echo "$CFLAGS" | grep "\-pipe" 2> /dev/null`" ; then +- CFLAGS="$CFLAGS -pipe" +- fi +- fi +- if test -z "`echo "$CFLAGS" | grep "\-g " 2> /dev/null`" ; then +- CFLAGS="$CFLAGS -g" +- fi + fi + + dnl does this compiler support -Wno-pointer-sign ? diff --git a/net-irc/hexchat/hexchat-2.9.3.ebuild b/net-irc/hexchat/hexchat-2.9.3.ebuild new file mode 100644 index 000000000000..05cdcbb9ac51 --- /dev/null +++ b/net-irc/hexchat/hexchat-2.9.3.ebuild @@ -0,0 +1,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.1 2012/10/15 14:15:14 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 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 +} |