blob: 5dac9abb1c57f30e4bce3081d5b45e9e407c08ec (
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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit git-r3 qmake-utils
DESCRIPTION="Additional style plugins for Qt"
HOMEPAGE="http://code.qt.io/cgit/qt/qtstyleplugins.git/"
LICENSE="LGPL"
SLOT="0"
EGIT_REPO_URI="http://code.qt.io/cgit/qt/qtstyleplugins.git"
EGIT_BRANCH="master"
SRC_URI=""
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-qt/qtcore:5
x11-libs/gtk+:2
x11-libs/libX11"
DEPEND="${RDEPEND}"
src_configure() {
eqmake5 PREFIX="${D}"/usr
}
src_install() {
emake INSTALL_ROOT="${D}" install
}
|