blob: 21583848188009b34b36a165867c8d75cdefcd76 (
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
44
45
46
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/secure-delete/secure-delete-3.0.ebuild,v 1.9 2004/06/24 22:32:47 agriffis Exp $
MY_P=${PN//-/_}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Secure file/disk/swap/memory erasure utlities"
HOMEPAGE="http://www.thc.org/"
SRC_URI="http://www.thc.org/releases/${MY_P}.tar.gz"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~sparc alpha ~hppa ~mips ~amd64 ~ia64 ~ppc64"
RDEPEND="virtual/glibc"
DEPEND="${RDEPEND}
!app-misc/srm"
src_unpack() {
unpack ${A} ; cd ${S}
chmod u+w .
sed -i \
-e 's|mktemp|mkstemp|g' \
sfill.c
}
src_compile() {
make OPT="${CFLAGS} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64" || die
}
src_install() {
make \
INSTALL_DIR=${D}/usr/bin \
MAN_DIR=${D}/usr/share/man \
DOC_DIR=${D}/usr/share/doc/${PF} \
install || die "compile problem"
dodoc secure_delete.doc usenix6-gutmann.doc
}
pkg_postinst() {
einfo "sfill and srm are useless on journaling filesystems,"
einfo "such as reiserfs or XFS."
einfo "See documentation for more information."
}
|