blob: e693e17b51eed49cc75a5ede97706d008fc6ec77 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit cmake-utils
DESCRIPTION="Notification daemon and library"
HOMEPAGE="http://www.lxde.org/"
if [[ ${PV} = *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="git://github.com/lxde/${PN}.git"
EGIT_BRANCH="master"
KEYWORDS=""
else
SRC_URI="mirror://sourceforge/lxde/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-2 LGPL-2.1+"
SLOT="0"
IUSE=""
DEPEND="lxde-base/liblxqt
lxde-base/libqtxdg
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4"
RDEPEND="${DEPEND}"
|