blob: a35ea846e0742c1fadbea0099994e647b6704655 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit cmake-utils
DESCRIPTION="Qt implementation of the DBusMenu protocol"
HOMEPAGE="http://people.canonical.com/~agateau/dbusmenu/"
SRC_URI="http://people.canonical.com/~agateau/dbusmenu/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
# Add "test" when the automatic/required dependency upon dev-libs/qjson is fixed!
IUSE=""
# Change this to test?(qjson) when the automatic/required dep is fixed!
DEPEND="
dev-libs/qjson
x11-libs/qt-gui:4
"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${P}-set-link-directories.patch"
}
|