blob: 87ea7f0ca3b9f4addbc6e1ae8345fb70c2564c86 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/bsign/bsign-0.4.5.ebuild,v 1.1 2004/04/15 04:07:02 method Exp $
DESCRIPTION="This package embeds secure hashes (SHA1) and digital signatures (GNU Privacy Guard) into files for verification and authentication"
HOMEPAGE="http://packages.debian.org/unstable/admin/bsign.html"
SRC_URI="http://ftp.debian.org/debian/pool/main/b/bsign/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND=""
S=${WORKDIR}/${P}
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
emake || die "emake failed"
}
src_install() {
dobin bsign
dobin bsign_sign
dobin bsign_verify
dobin bsign_hash
dobin bsign_check
doman bsign.1
}
|