blob: a6d95714d7431434226bd5e26dc3029893c9b0bf (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/scsign/scsign-0.0.4.ebuild,v 1.1 2005/01/02 09:52:12 dragonheart Exp $
inherit toolchain-funcs eutils
DESCRIPTION="Scsign - a command-line utility to digitally sign a file"
HOMEPAGE="http://opensignature.sourceforge.net/"
SRC_URI="mirror://sourceforge/opensignature/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
S=${WORKDIR}
DEPEND=">=dev-libs/opensc-0.8.1
dev-libs/openssl
sys-apps/pcsc-lite"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-printid.patch || die "patch failed"
}
src_compile() {
$(tc-getCC) ${CFLAGS} -lcrypto -lpcsclite -lpthread -lopensc scsign.c -o scsign || die
}
src_install() {
dobin scsign
}
|