# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="1" inherit eutils qt4 MY_PN="${PN/IM/im}" DESCRIPTION="New Instant Messenger (ICQ) written in C++ with Qt." HOMEPAGE="http://www.qutim.org" LICENSE="GPL-2" SRC_URI="mirror://sourceforge/${MY_PN}/${P}.tar.bz2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="$(qt4_min_version 4.3)" DEPEND="${RDEPEND}" QT4_BUILT_WITH_USE_CHECK="png" # gif" S="${WORKDIR}/${PN}" src_compile() { cd ${S} eqmake4 ${PN}.pro || die "eqmake4 failed" emake || die "emake failed" } src_install(){ into /usr dobin ${PN} || die "Installation failed" }