# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils qt3 DESCRIPTION="Jabbin is a Jabber client that allows calls using the VoIP Jabber network." HOMEPAGE="http://www.jabbin.com/" MY_P="${P//_/}" SRC_URI="mirror://sourceforge/jabbin/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="" DEPEND="$(qt_min_version 3.3) app-crypt/qca media-libs/speex" RDEPEND="${DEPEND}" S="${WORKDIR}/${MY_P}" #TODO: remove RESTRICT prior to insert in portage RESTRICT="nomirror" src_compile() { cd "${S}" qmake jabbin.pro || die "qmake failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" }