src_prepare-overlay/dev-libs/libQuotient/libQuotient-0.6_beta1.ebuild

41 lines
781 B
Bash
Raw Normal View History

2020-06-01 14:21:37 +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:21:37 +02:00
EAPI=7
2020-05-31 21:27:02 +02:00
DESCRIPTION="A Qt5 library to write cross-platform clients for Matrix"
HOMEPAGE="https://github.com/qmatrixclient/libqmatrixclient"
inherit eutils cmake-utils
2020-06-01 14:21:37 +02:00
MY_PV="$(ver_rs 2 '-')"
if [[ ${PV} == "9999" ]]; then
2020-05-31 21:27:02 +02:00
inherit git-r3
2020-06-01 14:21:37 +02:00
EGIT_REPO_URI="https://github.com/quotient-im/${PN}.git"
2020-05-31 21:27:02 +02:00
else
2020-06-01 14:21:37 +02:00
SRC_URI="https://github.com/quotient-im/libQuotient/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
2020-05-31 21:27:02 +02:00
fi
LICENSE="GPL-3"
SLOT="0"
IUSE=""
RDEPEND=""
2020-06-01 14:21:37 +02:00
DEPEND="
${RDEPEND}
2020-05-31 21:27:02 +02:00
dev-qt/qtcore
dev-qt/qtmultimedia
2020-06-01 14:21:37 +02:00
!!dev-libs/libqmatrixclient
"
2020-05-31 21:27:02 +02:00
2020-06-01 14:21:37 +02:00
S="${WORKDIR}/${PN}-${MY_PV}"
2020-05-31 21:27:02 +02:00
src_configure() {
local mycmakeargs=(
-DBUILD_SHARED_LIBS=ON
)
cmake-utils_src_configure
}