diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2008-03-22 10:23:16 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2008-03-22 10:23:16 +0000 |
commit | 43b789d5cbeccfdef3b63e167b3b60215b00743f (patch) | |
tree | fd7eb00c6458ce8140c90084f84f5b712f6e85f8 /app-crypt/bcwipe | |
parent | games-arcade/blobwars: update ebuild to new gnome2 eclass (see bug #155993) (diff) | |
download | gentoo-2-43b789d5cbeccfdef3b63e167b3b60215b00743f.tar.gz gentoo-2-43b789d5cbeccfdef3b63e167b3b60215b00743f.tar.bz2 gentoo-2-43b789d5cbeccfdef3b63e167b3b60215b00743f.zip |
Cleanup
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-crypt/bcwipe')
-rw-r--r-- | app-crypt/bcwipe/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/bcwipe/bcwipe-1.6_p8.ebuild | 48 |
2 files changed, 4 insertions, 49 deletions
diff --git a/app-crypt/bcwipe/ChangeLog b/app-crypt/bcwipe/ChangeLog index 4685fb120a16..f89ca4f570bc 100644 --- a/app-crypt/bcwipe/ChangeLog +++ b/app-crypt/bcwipe/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/bcwipe # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.28 2008/03/22 10:10:02 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.29 2008/03/22 10:23:16 alonbl Exp $ + + 22 Mar 2008; Alon Bar-Lev <alonbl@gentoo.org> -bcwipe-1.6_p8.ebuild: + Cleanup 22 Mar 2008; nixnut <nixnut@gentoo.org> bcwipe-1.7_p2.ebuild: Stable on ppc wrt bug 207547 diff --git a/app-crypt/bcwipe/bcwipe-1.6_p8.ebuild b/app-crypt/bcwipe/bcwipe-1.6_p8.ebuild deleted file mode 100644 index 8b388470614b..000000000000 --- a/app-crypt/bcwipe/bcwipe-1.6_p8.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/bcwipe-1.6_p8.ebuild,v 1.5 2008/01/02 15:30:45 angelos Exp $ - -inherit toolchain-funcs eutils - -DESCRIPTION="BCWipe secure file removal utility" -HOMEPAGE="http://www.jetico.com/" -SRC_URI="http://www.jetico.com/linux/BCWipe-${PV/_p/-}.tar.gz - http://www.jetico.com/linux/BCWipe.doc.tgz" - -LICENSE="bestcrypt" -SLOT="0" -IUSE="doc" -KEYWORDS="amd64 ppc sparc x86" - -DEPEND="" -RDEPEND="" - -S="${WORKDIR}/${PN}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-qa.patch" -} - -src_compile() { - emake CC="$(tc-getCC)" DEFS="${CFLAGS}"|| die "Make failed" -} - -src_test() { - echo "abc123" >> testfile - ./bcwipe -f testfile || die "bcwipe test failed" - [ -f testfile ] && die "test file still exists. bcwipe should of deleted it" -} - -src_install() { - dobin bcwipe - doman bcwipe.1 - use doc && dohtml -r ../bcwipe-help -} - -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}/wu_licen.htm" -} |