blob: 2e3d517b8ad305932981752465dd571054471433 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/razorqt-base/razorqt-autosuspend/razorqt-autosuspend-0.5.2.ebuild,v 1.4 2014/05/31 20:45:50 ssuominen Exp $
EAPI=4
inherit cmake-utils
DESCRIPTION="Razor-qt module for automatic suspend"
HOMEPAGE="http://razor-qt.org/"
if [[ ${PV} = *9999* ]]; then
inherit git-2
EGIT_REPO_URI="git://github.com/Razor-qt/razor-qt.git"
EGIT_BRANCH="master"
KEYWORDS=""
else
SRC_URI="http://www.razor-qt.org/downloads/files/razorqt-${PV}.tar.bz2"
KEYWORDS="amd64 ~ppc x86"
S="${WORKDIR}/razorqt-${PV}"
fi
LICENSE="LGPL-2.1+"
SLOT="0"
IUSE=""
DEPEND="razorqt-base/razorqt-libs"
RDEPEND="${DEPEND}
razorqt-base/razorqt-data
razorqt-base/razorqt-power
|| ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils )"
src_configure() {
local mycmakeargs=(
-DSPLIT_BUILD=On
-DMODULE_AUTOSUSPEND=On
)
cmake-utils_src_configure
}
|