You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/softhsm/softhsm-2.0.0.ebuild

37 lines
686 B

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="A software PKCS#11 implementation"
HOMEPAGE="http://www.opendnssec.org/"
SRC_URI="http://www.opendnssec.org/files/source/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
SLOT="0"
LICENSE="BSD"
RDEPEND="
dev-db/sqlite:3
dev-libs/botan[threads,-bindist]
"
DEPEND="${RDEPEND}"
DOCS=( NEWS README.md )
src_configure() {
econf \
--disable-static \
--localstatedir=/var \
--with-botan="${EPREFIX}/usr/" \
$(use_enable amd64 64bit) \
$(use debug && echo "--with-loglevel=4")
}
src_install() {
default
find "${ED}" -name '*.la' -delete
}