blob: c9b5d295157942a6bc7e6c9111d0e87660cd4cc5 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/p11-kit-0.6.ebuild,v 1.1 2011/09/18 07:21:04 scarabeus Exp $
EAPI=4
DESCRIPTION="Provides a standard configuration setup for installing PKCS#11."
HOMEPAGE="http://p11-glue.freedesktop.org/p11-kit.html"
SRC_URI="http://p11-glue.freedesktop.org/releases/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
DEPEND=""
RDEPEND="${DEPEND}"
src_configure() {
econf \
$(use_enable debug)
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}
|