blob: bc68dd287a0ae1b67bd53de0a19e9db7ef749244 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
inherit git cmake-utils
DESCRIPTION="A library providing Qt implementation of DBusMenu specification"
HOMEPAGE="http://people.canonical.com/~agateau/dbusmenu/"
EGIT_REPO_URI="git://gitorious.org/dbusmenu/dbusmenu-qt.git"
LICENSE="LGPL-2"
KEYWORDS=""
SLOT="0"
IUSE="debug"
# Bug #315215, require X server running
RESTRICT="test"
DEPEND="
x11-libs/qt-core:4
x11-libs/qt-gui:4[dbus]
x11-libs/qt-test:4
"
RDEPEND="${DEPEND}"
DOCS=(NEWS README)
src_unpack() {
git_src_unpack
}
|