summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorThomas Raschbacher <lordvan@gentoo.org>2003-02-07 15:13:59 +0000
committerThomas Raschbacher <lordvan@gentoo.org>2003-02-07 15:13:59 +0000
commitb6847df720b85569ac27db0408ba7f758cb236ca (patch)
treefe62681c44645b8e2278382b7c0a4244cede0284 /net-im
parentadd ~alpha (diff)
downloadgentoo-2-b6847df720b85569ac27db0408ba7f758cb236ca.tar.gz
gentoo-2-b6847df720b85569ac27db0408ba7f758cb236ca.tar.bz2
gentoo-2-b6847df720b85569ac27db0408ba7f758cb236ca.zip
removed the patch again cuz of a bug in licq(reported and will be fixed soon [i hope])
Diffstat (limited to 'net-im')
-rw-r--r--net-im/licq/ChangeLog4
-rw-r--r--net-im/licq/files/licq.cpp-plugins.patch17
-rw-r--r--net-im/licq/licq-1.2.4-r2.ebuild6
3 files changed, 2 insertions, 25 deletions
diff --git a/net-im/licq/ChangeLog b/net-im/licq/ChangeLog
index cacdfd180448..66c3713b250e 100644
--- a/net-im/licq/ChangeLog
+++ b/net-im/licq/ChangeLog
@@ -1,6 +1,6 @@
# ChangeLog for net-im/licq
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.16 2003/02/07 13:37:54 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.17 2003/02/07 15:13:59 lordvan Exp $
*licq-1.2.4-r2 (07 Feb 2003)
@@ -18,8 +18,6 @@
files/licq.cpp-plugins.patch :
Console plugin only gets installed if ncurses is in USE.
- Patch for src/licq.cpp to check for gtk and console plugin too if there
- is no qt or kde plugin.
*licq-1.2.4-r1 (31 Jan 2003)
diff --git a/net-im/licq/files/licq.cpp-plugins.patch b/net-im/licq/files/licq.cpp-plugins.patch
deleted file mode 100644
index 149629a99944..000000000000
--- a/net-im/licq/files/licq.cpp-plugins.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- licq.cpp 2003-01-18 02:29:32.000000000 +0100
-+++ licq.cpp.patched 2003-02-07 14:35:53.000000000 +0100
-@@ -355,9 +355,11 @@
- }
- else // If no plugins, try qt-gui
- {
-- if (LoadPlugin("qt-gui", argc, argv) == NULL)
-- if (LoadPlugin("kde-gui", argc, argv) == NULL)
-- return false;
-+ if (LoadPlugin("qt-gui", argc, argv) == NULL)
-+ if (LoadPlugin("kde-gui", argc, argv) == NULL)
-+ if (LoadPlugin("jons-gtk-gui", argc, argv) == NULL)
-+ if (LoadPlugin("console", argc, argv) == NULL)
-+ return false;
- }
- }
-
diff --git a/net-im/licq/licq-1.2.4-r2.ebuild b/net-im/licq/licq-1.2.4-r2.ebuild
index b4bf7fef2e63..8ebdf9783541 100644
--- a/net-im/licq/licq-1.2.4-r2.ebuild
+++ b/net-im/licq/licq-1.2.4-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.2.4-r2.ebuild,v 1.3 2003/02/07 13:37:54 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.2.4-r2.ebuild,v 1.4 2003/02/07 15:13:59 lordvan Exp $
IUSE="ssl socks5 qt kde ncurses"
@@ -27,10 +27,6 @@ src_compile() {
use ssl || first_conf="${first_conf} --disable-openssl"
use socks5 && first_conf="${first_conf} --enable-socks5"
- # check for other plugins than qt or kde by default too
- patch -p0 ${S}/src/licq.cpp < ${FILESDIR}/licq.cpp-plugins.patch
- einfo "Patched licq.cpp"
-
econf ${first_conf} || die
emake || die