diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-16 16:23:21 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-10-16 16:23:21 +0000 |
commit | 160249ecba0d2c5939f47f88b3c3c5de02e975fc (patch) | |
tree | 8fd22ff3134dc5a673cf9c01658746d481495315 /app-crypt/bcwipe | |
parent | Stable on alpha, bug #333435 (diff) | |
download | historical-160249ecba0d2c5939f47f88b3c3c5de02e975fc.tar.gz historical-160249ecba0d2c5939f47f88b3c3c5de02e975fc.tar.bz2 historical-160249ecba0d2c5939f47f88b3c3c5de02e975fc.zip |
Delete older ebuild.
Diffstat (limited to 'app-crypt/bcwipe')
-rw-r--r-- | app-crypt/bcwipe/bcwipe-1.9.1.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/app-crypt/bcwipe/bcwipe-1.9.1.ebuild b/app-crypt/bcwipe/bcwipe-1.9.1.ebuild deleted file mode 100644 index 006836764225..000000000000 --- a/app-crypt/bcwipe/bcwipe-1.9.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/bcwipe-1.9.1.ebuild,v 1.4 2009/06/02 17:03:04 armin76 Exp $ - -EAPI="2" - -inherit eutils versionator - -MY_PV="$(replace_version_separator 2 -)" - -DESCRIPTION="BCWipe secure file removal utility" -HOMEPAGE="http://www.jetico.com/" -SRC_URI="http://www.jetico.com/linux/BCWipe-${MY_PV}.tar.gz - doc? ( http://www.jetico.com/linux/BCWipe.doc.tgz )" - -LICENSE="bestcrypt" -SLOT="0" -IUSE="doc" -KEYWORDS="amd64 ppc sparc x86" - -DEPEND="" -RDEPEND="" - -S="${WORKDIR}/${PN}-${MY_PV}" - -src_prepare() { - epatch "${FILESDIR}/${P}-fix_warnings.patch" -} - -src_test() { - echo "abc123" >> testfile - ./bcwipe -f testfile || die "bcwipe test failed" - [ -f testfile ] && die "test file still exists. bcwipe should have deleted it" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - if use doc ; then - dohtml -r ../bcwipe-help || die "dohtml failed" - fi -} - -pkg_postinst() { - ewarn "The BestCrypt drivers are not free - Please purchace a license from " - ewarn "http://www.jetico.com/" - ewarn "full details /usr/share/doc/${PF}/html/bcwipe-help/wu_licen.htm" -} |