You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1014 B
46 lines
1014 B
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit qmake-utils vcs-snapshot
|
|
|
|
DESCRIPTION="Qt5 bindings for libaccounts-glib"
|
|
HOMEPAGE="https://01.org/gsso/"
|
|
SRC_URI="https://gitlab.com/accounts-sso/libaccounts-qt/repository/VERSION_1.15/archive.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~arm64 x86"
|
|
IUSE="doc test"
|
|
|
|
# dbus problems
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
>=net-libs/libaccounts-glib-1.23
|
|
dev-libs/glib:2
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtxml:5
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
doc? ( app-doc/doxygen )
|
|
test? ( dev-qt/qttest:5 )
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -e "s|share/doc/\$\${PROJECT_NAME}|share/doc/${PF}|" -i doc/doc.pri || die
|
|
use doc || sed -e "/include( doc\/doc.pri )/d" -i ${PN}.pro || die
|
|
use test || sed -i -e '/^SUBDIRS/s/tests//' accounts-qt.pro || die "couldn't disable tests"
|
|
}
|
|
|
|
src_configure() {
|
|
eqmake5 LIBDIR="${EPREFIX%/}/usr/$(get_libdir)"
|
|
}
|
|
|
|
src_install() {
|
|
emake INSTALL_ROOT="${D}" install
|
|
}
|