blob: a89ec9101379299ca0a40a9bd51ae14f428da400 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/razorqt-base/libqtxdg/libqtxdg-0.5.1.ebuild,v 1.4 2013/01/17 07:05:39 yngwin Exp $
EAPI=4
inherit cmake-utils
DESCRIPTION="A Qt implementation of XDG standards"
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="mirror://github/Razor-qt/razor-qt/razorqt-${PV}.tar.bz2"
KEYWORDS="~amd64 ~ppc ~x86"
S="${WORKDIR}/razorqt-${PV}"
fi
LICENSE="LGPL-2.1"
SLOT="0"
IUSE=""
DEPEND="sys-apps/file
x11-libs/qt-core:4
x11-libs/qt-gui:4
!<razorqt-base/razorqt-meta-0.5.0
!x11-wm/razorqt"
RDEPEND="${DEPEND}
x11-misc/xdg-utils"
CMAKE_USE_DIR=${S}/libraries/qtxdg
|