31 lines
492 B
Bash
31 lines
492 B
Bash
|
|
# Copyright 1999-2020 Gentoo Authors
|
||
|
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
|
||
|
|
EAPI=7
|
||
|
|
|
||
|
|
inherit qmake-utils git-r3
|
||
|
|
|
||
|
|
DESCRIPTION="The X2Go KDrive Qt client"
|
||
|
|
HOMEPAGE="http://www.x2go.org"
|
||
|
|
EGIT_REPO_URI="git://code.x2go.org/x2gokdriveclient.git"
|
||
|
|
|
||
|
|
LICENSE="GPL-2"
|
||
|
|
SLOT="0"
|
||
|
|
KEYWORDS="amd64 x86"
|
||
|
|
IUSE=""
|
||
|
|
|
||
|
|
COMMON_DEPEND="dev-qt/qtcore:5"
|
||
|
|
DEPEND="${COMMON_DEPEND}"
|
||
|
|
RDEPEND="${COMMON_DEPEND}"
|
||
|
|
|
||
|
|
src_configure() {
|
||
|
|
eqmake5
|
||
|
|
}
|
||
|
|
|
||
|
|
src_install() {
|
||
|
|
dobin ${PN}
|
||
|
|
|
||
|
|
doman man/man?/*
|
||
|
|
}
|
||
|
|
|