diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-07-04 11:34:06 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-07-04 11:56:02 -0400 |
commit | 0ea2f7e3d57bb8d671f1992223aa3642366107a3 (patch) | |
tree | e85e8daea9e6e95a9b307556b432e647d6cce28d /dev-libs/d0_blind_id/d0_blind_id-1.0_p20201124.ebuild | |
parent | dev-libs/d0_blind_id: add gitlab remote-id and indent (diff) | |
download | gentoo-0ea2f7e3d57bb8d671f1992223aa3642366107a3.tar.gz gentoo-0ea2f7e3d57bb8d671f1992223aa3642366107a3.tar.bz2 gentoo-0ea2f7e3d57bb8d671f1992223aa3642366107a3.zip |
dev-libs/d0_blind_id: add 1.0_p20201124
Matches what's used for xonotic-0.8.5.
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-libs/d0_blind_id/d0_blind_id-1.0_p20201124.ebuild')
-rw-r--r-- | dev-libs/d0_blind_id/d0_blind_id-1.0_p20201124.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-libs/d0_blind_id/d0_blind_id-1.0_p20201124.ebuild b/dev-libs/d0_blind_id/d0_blind_id-1.0_p20201124.ebuild new file mode 100644 index 000000000000..b619ed49cf9e --- /dev/null +++ b/dev-libs/d0_blind_id/d0_blind_id-1.0_p20201124.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +D0BLIND_HASH="c32ee93edd10288ca40e1eb81263f0a37309b32c" # xonotic-0.8.5 + +DESCRIPTION="Blind-ID library for user identification using RSA blind signatures" +HOMEPAGE="https://gitlab.com/xonotic/d0_blind_id/" +SRC_URI="https://gitlab.com/xonotic/d0_blind_id/-/archive/${D0BLIND_HASH}/${P}.tar.gz" +S="${WORKDIR}/${PN}-${D0BLIND_HASH}" + +LICENSE="BSD public-domain" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND="dev-libs/gmp:=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + local econfargs=( + --enable-rijndael + --without-openssl + --without-tfm + --without-tommath + ) + + econf "${econfargs[@]}" +} + +src_install() { + default + + dodoc d0_blind_id.txt + + find "${ED}" -type f -name "*.la" -delete || die +} |