5c977c696a
fixes
26 lines
615 B
Bash
26 lines
615 B
Bash
<<<<<<< HEAD
|
|
# Copyright 1999-2019 Gentoo Foundation
|
|
=======
|
|
# Copyright 2020 Gentoo Authors
|
|
>>>>>>> upstream/master
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake-utils
|
|
|
|
DESCRIPTION="An implementation of the Double Ratchet cryptographic ratchet in C++"
|
|
HOMEPAGE="https://git.matrix.org/git/olm/about/"
|
|
|
|
if [[ "${PV}" == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://gitlab.matrix.org/matrix-org/${PN}.git"
|
|
else
|
|
SRC_URI="https://gitlab.matrix.org/matrix-org/${PN}/-/archive/${PV}/${P}.tar.bz2"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0/$(ver_cut 1)"
|
|
IUSE=""
|