summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2005-05-15 12:47:34 +0000
committerSven Wegener <swegener@gentoo.org>2005-05-15 12:47:34 +0000
commit21bb81299e78832f6c2d7ea862fbf87b3fb6509f (patch)
tree44cc2bebd4ab47100d048a31c9c547e9b3e2b997 /net-irc/xchat-gnome
parentStable on ppc64 (diff)
downloadgentoo-2-21bb81299e78832f6c2d7ea862fbf87b3fb6509f.tar.gz
gentoo-2-21bb81299e78832f6c2d7ea862fbf87b3fb6509f.tar.bz2
gentoo-2-21bb81299e78832f6c2d7ea862fbf87b3fb6509f.zip
Disabled the gtk and text frontends, if users want them they should use plain net-irc/xchat instead.
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'net-irc/xchat-gnome')
-rw-r--r--net-irc/xchat-gnome/ChangeLog6
-rw-r--r--net-irc/xchat-gnome/xchat-gnome-0.4.ebuild15
2 files changed, 16 insertions, 5 deletions
diff --git a/net-irc/xchat-gnome/ChangeLog b/net-irc/xchat-gnome/ChangeLog
index 41ba7fec92dd..d6715181464b 100644
--- a/net-irc/xchat-gnome/ChangeLog
+++ b/net-irc/xchat-gnome/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-irc/xchat-gnome
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.1 2005/05/14 23:01:57 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.2 2005/05/15 12:47:34 swegener Exp $
+
+ 15 May 2005; Sven Wegener <swegener@gentoo.org> xchat-gnome-0.4.ebuild:
+ Disabled the gtk and text frontends, if users want them they should use
+ plain net-irc/xchat instead.
*xchat-gnome-0.4 (14 May 2005)
diff --git a/net-irc/xchat-gnome/xchat-gnome-0.4.ebuild b/net-irc/xchat-gnome/xchat-gnome-0.4.ebuild
index 1eff1f8cadd1..5d775b1af646 100644
--- a/net-irc/xchat-gnome/xchat-gnome-0.4.ebuild
+++ b/net-irc/xchat-gnome/xchat-gnome-0.4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.4.ebuild,v 1.1 2005/05/14 23:01:57 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.4.ebuild,v 1.2 2005/05/15 12:47:34 swegener Exp $
DESCRIPTION="GNOME frontend for the popular X-Chat IRC client"
HOMEPAGE="http://xchat-gnome.navi.cx/"
@@ -23,7 +23,11 @@ DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_compile() {
+ # We disable gtkfe and textfe, if you want them please use net-irc/xchat instead!
econf \
+ --disable-textfe \
+ --disable-gtkfe \
+ --enable-gnomefe \
$(use_enable ssl openssl) \
$(use_enable perl) \
$(use_enable python) \
@@ -31,17 +35,20 @@ src_compile() {
$(use_enable mmx) \
$(use_enable ipv6) \
$(use_enable nls) \
- $(use_enable xft) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
- make DESTDIR=${D} install || die "make install"
+ make DESTDIR="${D}" install || die "make install"
+
+ rm -f \
+ "${D}"/usr/share/applications/xchat.desktop \
+ "${D}"/usr/share/pixmaps/xchat.png
# install plugin development header
insinto /usr/include/xchat
doins src/common/xchat-plugin.h || die "doins failed"
- dodoc ChangeLog README* || die "dodoc failed"
+ dodoc src/fe-gnome/{BUGS,ChangeLog,TODO} || die "dodoc failed"
}