- Code: Select all
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="1"
inherit eutils qt4 subversion
MY_PN="${PN/im/IM}"
DESCRIPTION="New Instant Messenger (ICQ) written in C++ with Qt."
HOMEPAGE="http://qutim.sourceforge.net"
LICENSE="GPL-2"
ESVN_REPO_URI="https://qutim.svn.sourceforge.net/svnroot/qutim/trunk/"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="$(qt4_min_version 4.3)"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_PN}"
src_compile() {
cd ${S}
eqmake4 ${MY_PN}.pro || die "eqmake4 failed"
emake || die "emake failed"
}
src_install(){
into /usr
dobin build/bin/${MY_PN} || die "installation failed"
}

