# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-im/sim/sim-0.8.3.ebuild,v 1.15 2005/01/15 00:07:07 danarmak Exp $ inherit eutils if use kde; then inherit kde-base eutils need-kde 3 else inherit base kde-functions eutils need-qt 3 fi LICENSE="GPL-2" DESCRIPTION="An ICQ v8 Client. Supports File Transfer, Chat, Server-Side Contactlist, ..." SRC_URI="mirror://sourceforge/sim-icq/${P}.tar.gz" RESTRICT="nomirror" HOMEPAGE="http://sim-icq.sourceforge.net" KEYWORDS="x86 ~ppc amd64" SLOT="0" IUSE="ssl kde" newdepend "ssl? ( dev-libs/openssl )" DEPEND="$DEPEND sys-devel/flex" src_unpack() { unpack ${A} ; cd ${S} epatch ${FILESDIR}/${P}-nostl.diff } src_compile() { local myconf myconf="$( use_enable ssl openssl )" myconf="$myconf $( use_enable kde )" myconf="$myconf --without-gkrellm_plugin" myconf="$myconf --prefix=/usr" if use kde; then need-kde 3 else need-qt 3 fi need-automake 1.6 # need-autoconf 2.5 make -f admin/Makefile.common use kde && kde_src_compile myconf econf $myconf --without-gkrellm || die make || die } src_install() { make DESTDIR=${D} install || die dodoc TODO README ChangeLog COPYING AUTHORS }