blob: 0085618e4f5955a263accc108056830e70af2fb9 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit cmake-utils
DESCRIPTION="A Qt-based interface to system statistics"
HOMEPAGE="http://www.lxqt.org/"
if [[ ${PV} = *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
KEYWORDS=""
else
SRC_URI="mirror://sourceforge/lxde/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-2 LGPL-2.1+"
SLOT="0"
IUSE=""
DEPEND="dev-qt/qtcore:4"
RDEPEND="${DEPEND}"
|