diff options
Diffstat (limited to 'net-im/licq/licq-1.2.4-r2.ebuild')
-rw-r--r-- | net-im/licq/licq-1.2.4-r2.ebuild | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/net-im/licq/licq-1.2.4-r2.ebuild b/net-im/licq/licq-1.2.4-r2.ebuild new file mode 100644 index 000000000000..556524796268 --- /dev/null +++ b/net-im/licq/licq-1.2.4-r2.ebuild @@ -0,0 +1,134 @@ +# 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.1 2003/02/07 12:05:57 seemant Exp $ + +IUSE="ssl socks5 qt kde" + +use kde && inherit kde-base +use kde && need-kde 3.0 + +DESCRIPTION="ICQ Client with v8 support" +HOMEPAGE="http://www.licq.org" +LICENSE="GPL-2" + +DEPEND="${DEPEND} + ssl? ( >=dev-libs/openssl-0.9.6 ) + qt? ( >=x11-libs/qt-3.0.0 ) + gtk? ( =x11-libs/gtk+-1.2* )" + +SRC_URI="http://download.sourceforge.net/licq/${P}.tar.bz2" +SLOT="2" +KEYWORDS="~x86" + +src_compile() { + + local first_conf + use ssl || first_conf="${first_conf} --disable-openssl" + use socks5 && first_conf="${first_conf} --enable-socks5" + + econf ${first_conf} || die + emake || die + + + # Create the various plug-ins + + # First, the Qt plug-in + if [ "`use qt`" ] + then + # A hack to build against the latest QT: + local v + for v in /usr/qt/[0-9] + do + [ -d "${v}" ] && export QTDIR="${v}" + done + use kde && kde_src_compile myconf + use kde && second_conf="${second_conf} ${myconf} --with-kde" + + # note! watch the --prefix=/usr placement; + # licq itself installs into /usr, but the + # optional kde/qt interface (to which second_conf belogns) + # installs its files in $KDE3DIR/{lib,share}/licq + + cd ${S}/plugins/qt-gui + einfo "Compiling Qt GUI plug-in" + econf ${second_conf} || die + emake || die + fi + + # Now Jon's GTK plug-in + if [ "`use gtk`" ] + then + cd ${S}/plugins/jons-gtk-gui + einfo "Compiling GTK GUI plug-in" + econf || die + emake || die + fi + + # Now the console plug-in + cd ${S}/plugins/console + einfo "Compiling the Console plug-in" + econf || die + emake || die + + # The Auto-Responder plug-in + cd ${S}/plugins/auto-reply + einfo "Compiling the Auto-Reply plug-in" + econf || die + emake || die + + # The Remote Management Service + cd ${S}/plugins/rms + einfo "Compiling Remote Management Services plug-in" + econf || die + emake || die +} + +src_install() { + + cd ${S} + make DESTDIR=${D} install || die + + dodoc ChangeLog INSTALL README* + + # Install the plug-ins + if [ "`use qt`" ] + then + cd ${S}/plugins/qt-gui + make DESTDIR=${D} install || die + docinto plugins/qt-gui + dodoc README* + + # fix bug #12436, see my comment there + if [ "`use kde`" ]; then + cd $D/usr/lib/licq + ln -s licq_kde-gui.la licq_qt-gui.la + ln -s licq_kde-gui.so licq_qt-gui.so + fi + fi + + if [ "`use gtk`" ] + then + cd ${S}/plugins/jons-gtk-gui + make DESTDIR=${D} install || die + docinto plugins/jons-gtk-gui + dodoc TODO + fi + + cd ${S}/plugins/console + make DESTDIR=${D} install || die + docinto plugins/console + dodoc README + + + cd ${S}/plugins/auto-reply + make DESTDIR=${D} install || die + docinto plugins/auto-reply + dodoc README licq_autoreply.conf + + cd ${S}/plugins/rms + make DESTDIR=${D} install || die + docinto plugins/rms + dodoc README licq_rms.conf + + +} |