blob: 41fb3d59efd4f63b79b5fc865f15f9e2b17d982c (
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
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/tpm-emulator/tpm-emulator-0.2a.ebuild,v 1.1 2005/06/23 13:07:26 dragonheart Exp $
inherit toolchain-funcs linux-mod eutils
MY_P=${P/-/_}
DESCRIPTION="Emulator driver for tpm"
HOMEPAGE="https://developer.berlios.de/projects/tpm-emulator"
SRC_URI="http://download.berlios.de/tpm-emulator/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-libs/gmp"
RDEPEND=""
S=${WORKDIR}/${PN/-/_}-0.2
MODULE_NAMES="tpm_emulator(crypt:)"
BUILD_TARGETS="all"
BUILD_PARAMS="-j1 CC=$(tc-getCC) MODULE=tpm_emulator.${KV_OBJ} USE_GMP=/usr/lib/libgmp.a"
# INCLUDE="${CFLAGS}"
src_unpack() {
unpack ${A}
cd ${S}/tpm
epatch ${FILESDIR}/${P}-inline.patch
}
src_install() {
linux-mod_src_install
dodoc README
}
pkg_postinst() {
linux-mod_pkg_postinst
einfo 'when starting for the first time:'
einfo 'modprobe tpm_emulator startup="clear"'
}
|