forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.2.24
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST BCWipe-1.9-13.tar.gz 141092 SHA256 c5e95d003f291d7c9c7c0a6ac76d03ae8fc48225292507581f949f81074126c4 SHA512 801b6d3c55d82915da14b3136c9ddba7fc947b40c07ba135c410e1e2703f74735d32ebb043d44325f615005631930ce48b4075885f1a928cf8f4a2d4c67ca5cc WHIRLPOOL 631f7af570898c61ad7559c427b8d4677ab62a85189d72539b1f9cf89cdee0fc8fe61a7524299f691c3358b38b0502d1ee1ccd5c035e0479adfb7dde1d6c5047 | ||
DIST BCWipe-1.9-8.tar.gz 131414 SHA256 6f5261716da15e3df07569ca2516334f7d132f0069420082fc71faf2aaf04fc0 SHA512 fe0b72b5279f8dc85c7ac2bee9c3b4ba13df542750faa25556b4a9a03eff323a5822e9e736440e4677c6aa6011a9ecf02acb51b7e934b30f4354826e798d7aa2 WHIRLPOOL 28fbf43435433a4858813329d474dd67e61af615616f9a3283e4b98b7bf9bdebd7ce84c1c787d4ba08a9f7f8ae53293c331cd2bcef3321c0de4ea932a570d618 | ||
DIST BCWipe.doc.tgz 21218 SHA256 afa50bf8653bb6bee108f0ae8b3dc35d289dde3d5c513b7e9ae7fe373635df4f SHA512 5aa402669ded46b6dc680293f18aea4ab20a7d6b7d9d7bf8e63003e557b953e8f8019431ea69d96d2236121e754bc456b3700a0895f4fff0573d2e9bac2e2ee3 WHIRLPOOL 2f6475d9395d2424cbabb046085ce0a016ecad4e76f195e51fb385e57f68f13313587b52c2776ad29798b682eaa8503bae4186029b698a2405f08187180a904f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="5" | ||
|
||
inherit eutils versionator | ||
|
||
MY_PV="$(replace_version_separator 2 -)" | ||
|
||
DESCRIPTION="Secure file removal utility" | ||
HOMEPAGE="http://www.jetico.com/" | ||
SRC_URI="https://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 ~arm ~ppc ~x86" | ||
|
||
DEPEND="" | ||
RDEPEND="" | ||
|
||
S="${WORKDIR}/${PN}-${MY_PV}" | ||
|
||
src_prepare() { | ||
epatch "${FILESDIR}"/${PN}-1.9.7-fix_warnings.patch \ | ||
"${FILESDIR}"/${PN}-1.9.8-fix-flags.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() { | ||
default | ||
|
||
if use doc ; then | ||
dohtml -r ../bcwipe-help | ||
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" | ||
} |