blob: c094d720095b5de11d2c1e701eb698e5bb72e082 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/bcwipe-1.3_p1.ebuild,v 1.7 2005/01/01 12:25:07 eradicator Exp $
DESCRIPTION="BCWipe secure file removal utility"
HOMEPAGE="http://www.jetico.com/"
SRC_URI="mirror://gentoo/linux/BCWipe-${PV/_p/-}.tar.gz
http://www.jetico.com/linux/BCWipe.doc.tgz"
LICENSE="bestcrypt"
SLOT="0"
IUSE=""
KEYWORDS="x86"
DEPEND="virtual/libc"
RDEPEND=""
S=${WORKDIR}/${PN}
src_compile() {
emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" || die "Make failed"
}
src_install() {
dobin bcwipe || die
doman bcwipe.1
cd ../bcwipe-help
dodir /usr/share/doc/${PF}
cp -r * ${D}/usr/share/doc/${PF}
}
|