summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-11-23 19:56:27 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-11-23 19:56:27 +0000
commitbe7d095150cfa333eb4736c2e930c5c7dbde5b89 (patch)
treea3b2a090b55b2e5cd3dcbd160865cd53b6d1c928 /net-irc
parentStable for amd64, wrt bug #442394 (diff)
downloadgentoo-2-be7d095150cfa333eb4736c2e930c5c7dbde5b89.tar.gz
gentoo-2-be7d095150cfa333eb4736c2e930c5c7dbde5b89.tar.bz2
gentoo-2-be7d095150cfa333eb4736c2e930c5c7dbde5b89.zip
Remove old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/hexchat/ChangeLog7
-rw-r--r--net-irc/hexchat/files/hexchat-2.8.8-cflags.patch17
-rw-r--r--net-irc/hexchat/hexchat-2.9.1.ebuild95
-rw-r--r--net-irc/hexchat/hexchat-2.9.2.ebuild95
4 files changed, 6 insertions, 208 deletions
diff --git a/net-irc/hexchat/ChangeLog b/net-irc/hexchat/ChangeLog
index 996beb6790e3..725e59fad863 100644
--- a/net-irc/hexchat/ChangeLog
+++ b/net-irc/hexchat/ChangeLog
@@ -1,6 +1,11 @@
# 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.16 2012/11/15 12:52:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.17 2012/11/23 19:56:27 ago Exp $
+
+ 23 Nov 2012; Agostino Sarubbo <ago@gentoo.org>
+ -files/hexchat-2.8.8-cflags.patch, -hexchat-2.9.1.ebuild,
+ -hexchat-2.9.2.ebuild:
+ Remove old
15 Nov 2012; Agostino Sarubbo <ago@gentoo.org> hexchat-2.9.3.ebuild:
Stable for x86, wrt bug #443118
diff --git a/net-irc/hexchat/files/hexchat-2.8.8-cflags.patch b/net-irc/hexchat/files/hexchat-2.8.8-cflags.patch
deleted file mode 100644
index a220ce6d5948..000000000000
--- a/net-irc/hexchat/files/hexchat-2.8.8-cflags.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- configure.in
-+++ configure.in
-@@ -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.1.ebuild b/net-irc/hexchat/hexchat-2.9.1.ebuild
deleted file mode 100644
index 4b6cef8c89bf..000000000000
--- a/net-irc/hexchat/hexchat-2.9.1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# 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.9 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
-}
diff --git a/net-irc/hexchat/hexchat-2.9.2.ebuild b/net-irc/hexchat/hexchat-2.9.2.ebuild
deleted file mode 100644
index 00eb04386b35..000000000000
--- a/net-irc/hexchat/hexchat-2.9.2.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# 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
-}