blob: 4e95b2e319a072bca56630910d0ba69d75d95977 (
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
36
37
38
39
40
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/qtweetlib/qtweetlib-0.5.ebuild,v 1.2 2012/07/15 16:49:30 kensington Exp $
EAPI=4
MY_PN=QTweetLib
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/minimoog/${MY_PN}/tarball/${PV} -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
else
GIT_ECLASS="git-2"
EGIT_REPO_URI="git://github.com/minimoog/QTweetLib.git"
KEYWORDS=""
fi
inherit qt4-r2 cmake-utils ${GIT_ECLASS}
DESCRIPTION="Qt based Twitter library"
HOMEPAGE="https://github.com/minimoog/QTweetLib"
LICENSE="GPL-2"
SLOT="0"
IUSE="debug"
DEPEND="
>=dev-libs/qjson-0.7.1
>=x11-libs/qt-core-4.6.0:4[ssl]
"
RDEPEND="${DEPEND}"
src_unpack() {
if [[ ${PV} != *9999* ]]; then
unpack ${A}
mv *-${MY_PN}-* "${S}"
else
git-2_src_unpack
fi
}
|