blob: 54b307a89955447063db99e955e4cb305fa4c0c3 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/softhsm/softhsm-1.2.1.ebuild,v 1.1 2011/06/02 10:24:30 scarabeus Exp $
EAPI=4
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-1.8.10[threads]
"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS NEWS README )
src_configure() {
econf \
--disable-static \
$(use_enable amd64 64bit) \
$(use debug && echo "--with-loglevel=4")
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}
|