You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/srm/srm-1.2.11-r1.ebuild

38 lines
899 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/srm/srm-1.2.11-r1.ebuild,v 1.4 2012/02/04 13:43:51 ranger Exp $
EAPI="4"
inherit autotools
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="MIT"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="debug"
DEPEND="!app-misc/secure-delete
sys-kernel/linux-headers
"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
src_prepare() {
epatch "${FILESDIR}/cflags.patch"
eautoreconf
}
src_configure() {
econf $(use_enable debug)
}
pkg_postinst() {
ewarn "Please notice that srm will not work as expected with any"
ewarn "journaled file system (e.g. reiserfs, ext3)."
ewarn "See: /usr/share/doc/${PF}/README"
}