blob: bd0f83560fcebbc49522a7701c77df464ed838e8 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/srm/srm-1.2.7.ebuild,v 1.7 2005/01/01 15:24:55 eradicator Exp $
DESCRIPTION="A command-line compatible rm which destroys file contents before unlinking."
HOMEPAGE="http://sourceforge.net/projects/srm/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="X11"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
DEPEND="virtual/libc"
RDEPEND="virtual/libc
!app-misc/secure-delete"
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc README Changes
}
pkg_postinst() {
ewarn "Please notice that srm will not work as expected with any"
ewarn "journaled file system (e.g. reiserfs, ext3)."
ewarn "Please read /usr/share/doc/${P}/README.gz"
}
|