blob: 183b29c465c4316fc151d4370ae9d0a871f9c04d (
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
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/jreen/jreen-1.1.0.ebuild,v 1.1 2012/04/15 22:15:10 johu Exp $
EAPI=4
MY_P=lib${PN}\-${PV}
if [[ ${PV} != *9999* ]]; then
SRC_URI="http://qutim.org/downloads/${MY_P}.tar.bz2 -> ${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
else
GIT_ECLASS="git-2"
EGIT_REPO_URI="git://github.com/euroelessar/jreen.git"
KEYWORDS=""
fi
inherit qt4-r2 cmake-utils ${GIT_ECLASS}
DESCRIPTION="Qt XMPP library"
HOMEPAGE="https://github.com/euroelessar/jreen"
LICENSE="GPL-2"
SLOT="0"
IUSE="debug"
DEPEND="
>=app-crypt/qca-2.0.3
>=net-dns/libidn-1.20
>=x11-libs/qt-core-4.6.0:4
>=x11-libs/qt-gui-4.6.0:4
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
|