37 lines
872 B
Bash
37 lines
872 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/d0_blind_id/d0_blind_id-0.3.ebuild,v 1.8 2012/05/04 18:35:54 jdhore Exp $
|
|
|
|
EAPI=4
|
|
inherit autotools-utils
|
|
|
|
DESCRIPTION="Blind-ID library for user identification using RSA blind signatures"
|
|
HOMEPAGE="http://git.xonotic.org/?p=xonotic/d0_blind_id.git;a=summary"
|
|
SRC_URI="mirror://github/divVerent/d0_blind_id/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="static-libs"
|
|
|
|
RDEPEND="dev-libs/gmp"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
DOCS=( d0_blind_id.txt )
|
|
|
|
AUTOTOOLS_IN_SOURCE_BUILD=1
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
--enable-rijndael
|
|
--without-openssl
|
|
--without-tommath
|
|
$(use_enable static-libs static)
|
|
)
|
|
autotools-utils_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
autotools-utils_src_install
|
|
}
|