2020-06-01 14:20:46 +02:00
|
|
|
# Copyright 2020 Gentoo Authors
|
2020-05-31 21:27:02 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2020-06-01 14:20:46 +02:00
|
|
|
EAPI=7
|
2020-05-31 21:27:02 +02:00
|
|
|
|
|
|
|
DESCRIPTION="A Qt wrapper for libolm"
|
|
|
|
HOMEPAGE="https://gitlab.com/b0/libQtOlm"
|
|
|
|
|
2020-10-23 16:40:04 +02:00
|
|
|
inherit cmake
|
2020-05-31 21:27:02 +02:00
|
|
|
|
2020-06-01 14:20:46 +02:00
|
|
|
SRC_URI="https://gitlab.com/b0/libqtolm/-/archive/v3.0.1/libqtolm-v3.0.1.tar.gz"
|
|
|
|
|
|
|
|
if [[ ${PV} == 9999 ]]
|
|
|
|
then
|
|
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://gitlab.com/b0/${PN}.git"
|
|
|
|
else
|
|
|
|
SRC_URI="https://gitlab.com/b0/libqtolm/-/archive/v${PV}/libqtolm-v${PV}.tar.gz"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
S="${WORKDIR}/libqtolm-v${PV}"
|
2020-05-31 21:27:02 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
RDEPEND=""
|
2020-06-01 14:20:46 +02:00
|
|
|
DEPEND="
|
|
|
|
${RDEPEND}
|
2020-05-31 21:27:02 +02:00
|
|
|
dev-qt/qtcore
|
2020-06-01 14:20:46 +02:00
|
|
|
dev-libs/olm
|
|
|
|
"
|
|
|
|
|
2020-05-31 21:27:02 +02:00
|
|
|
src_configure() {
|
|
|
|
local mycmakeargs=(
|
|
|
|
-DBUILD_SHARED_LIBS=ON
|
|
|
|
)
|
2020-06-10 21:49:03 +02:00
|
|
|
cmake_src_configure
|
2020-05-31 21:27:02 +02:00
|
|
|
}
|