forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.2.22
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST softhsm-1.3.6.tar.gz 435893 SHA256 e39ac8e851220edd2b2afbe4d9e06d956bccc20bc72752740eabf95692359486 SHA512 fa344b298da6f15a616eaaa90e9e2153cb48ee1a5d4c3089a4195080efc5d15cccf27536279206587f8e1a55ac1b3745303712797296aba560be5ca958783b70 WHIRLPOOL 6451e039d31932306627f6af23041dbd7d386d1b137eb529332f45ce523ae0c61b736876815ca614a8ec54b0dbae9d83b510bbf126dafd17cbf6d12c745ed7a8 | ||
DIST softhsm-1.3.7.tar.gz 438437 SHA256 d12d6456a85561266d9da427565f3ee3746a35df6670d5e6be75de253c2810a4 SHA512 287400b981b7b420a300593129696e4739afe085a8106047ef429bc741d205bed214386b422572327c3bda63f0fb1b7558bb4d30d184ca3ec2ba9900153f075d WHIRLPOOL 47e66a8ae7f85b6505bdd751114a1594bc2e4b7bea71c6681bf77e8b7cc226d3515d9bdbd74ef0327899257d1844722c95446115f22724474f03cee0a99ca4f3 | ||
DIST softhsm-2.0.0.tar.gz 936954 SHA256 eae8065f6c472af24f4c056d6728edda0fd34306f41a818697f765a6a662338d SHA512 1db5b79bc59707d97a3c8ba5306d6778cd02d7049a6b294ef5e60214ef7b1dcc4d51405cc32f3720443d9477377e8b04b68d6cee143731f87b6357e4e5565fe2 WHIRLPOOL 014213f4501145c493ad4c22d0cfd262f7ca8693c3d13ca74d34bd7b24f85cf60a5117d0869e7544d9d61b0473b676e582ea41bdeba647427ffc1067def9f8f7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright 1999-2015 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] | ||
" | ||
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 | ||
} |