blob: fbb9d4175ad9ab5664e73b080a05bef122545136 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
inherit autotools git-2
DESCRIPTION="Blind-ID library for user identification using RSA blind signatures"
HOMEPAGE="http://git.xonotic.org/?p=xonotic/d0_blind_id.git;a=summary"
EGIT_REPO_URI="git://git.xonotic.org/xonotic/${PN}.git"
LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE="crypt openssl static-libs tommath"
REQUIRED_USE="openssl? ( !tommath )"
RDEPEND="
openssl? ( !tommath? ( dev-libs/gmp ) )
openssl? ( dev-libs/openssl )
tommath? ( dev-libs/libtommath )
"
DEPEND="${RDEPEND}
dev-util/pkgconfig
"
DOCS=( d0_blind_id.txt )
pkg_setup() {
use crypt || ewarn "You will have no encryption, only authentication."
use openssl && ewarn "OpenSSL is for Mac OS X users only, GMP is faster."
use tommath && ewarn "You enabled libtommath, GMP is faster."
}
src_prepare() {
eautoreconf
}
src_configure() {
econf \
$(use_enable crypt rijndael) \
$(use_with openssl) \
$(use_with tommath) \
$(use_enable static-libs static)
}
|