blob: 48dcc98cb2fc36b4eff7057fb98bb3fade9d7685 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/qxmpp/qxmpp-9999.ebuild,v 1.4 2012/09/04 16:37:47 pinkbyte Exp $
EAPI=3
EGIT_REPO_URI="https://code.google.com/p/qxmpp"
inherit qt4-r2 multilib git-2
DESCRIPTION="A cross-platform C++ XMPP client library based on the Qt framework."
HOMEPAGE="http://code.google.com/p/qxmpp/"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS=""
IUSE="debug"
DEPEND="x11-libs/qt-core:4
x11-libs/qt-gui:4
media-libs/speex"
RDEPEND="${DEPEND}"
src_configure(){
eqmake4 "${S}"/qxmpp.pro "PREFIX=/usr" "LIBDIR=$(get_libdir)"
}
|