Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/bcwipe: ChangeLog bcwipe-1.9.8.ebuild
Date: Wed, 23 Feb 2011 00:20:40
Message-Id: 20110223002030.C770220054@flycatcher.gentoo.org
1 sping 11/02/23 00:20:30
2
3 Modified: ChangeLog
4 Added: bcwipe-1.9.8.ebuild
5 Log:
6 app-crypt/bcwipe: Bump to 1.9.8
7
8 (Portage version: 2.1.9.40/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.50 app-crypt/bcwipe/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/bcwipe/ChangeLog?rev=1.50&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/bcwipe/ChangeLog?rev=1.50&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/bcwipe/ChangeLog?r1=1.49&r2=1.50
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v
20 retrieving revision 1.49
21 retrieving revision 1.50
22 diff -u -r1.49 -r1.50
23 --- ChangeLog 12 Feb 2011 18:34:40 -0000 1.49
24 +++ ChangeLog 23 Feb 2011 00:20:30 -0000 1.50
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-crypt/bcwipe
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.49 2011/02/12 18:34:40 arfrever Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.50 2011/02/23 00:20:30 sping Exp $
30 +
31 +*bcwipe-1.9.8 (23 Feb 2011)
32 +
33 + 23 Feb 2011; Sebastian Pipping <sping@g.o> +bcwipe-1.9.8.ebuild,
34 + +files/bcwipe-1.9.8-fix-flags.patch:
35 + Bump to 1.9.8, looks trivial
36
37 12 Feb 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
38 -files/bcwipe-1.9.1-fix_warnings.patch, -bcwipe-1.9.3.ebuild,
39
40
41
42 1.1 app-crypt/bcwipe/bcwipe-1.9.8.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/bcwipe/bcwipe-1.9.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/bcwipe/bcwipe-1.9.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: bcwipe-1.9.8.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/bcwipe-1.9.8.ebuild,v 1.1 2011/02/23 00:20:30 sping Exp $
52
53 EAPI="3"
54
55 inherit eutils versionator
56
57 MY_PV="$(replace_version_separator 2 -)"
58
59 DESCRIPTION="Secure file removal utility"
60 HOMEPAGE="http://www.jetico.com/"
61 SRC_URI="http://www.jetico.com/linux/BCWipe-${MY_PV}.tar.gz
62 doc? ( http://www.jetico.com/linux/BCWipe.doc.tgz )"
63
64 LICENSE="bestcrypt"
65 SLOT="0"
66 IUSE="doc"
67 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
68
69 DEPEND=""
70 RDEPEND=""
71
72 S="${WORKDIR}/${PN}-${MY_PV}"
73
74 src_prepare() {
75 epatch "${FILESDIR}"/${PN}-1.9.7-fix_warnings.patch \
76 "${FILESDIR}"/${P}-fix-flags.patch
77 }
78
79 src_test() {
80 echo "abc123" >> testfile
81 ./bcwipe -f testfile || die "bcwipe test failed"
82 [[ -f testfile ]] && die "test file still exists. bcwipe should have deleted it"
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "emake install failed"
87
88 if use doc ; then
89 dohtml -r ../bcwipe-help || die "dohtml failed"
90 fi
91 }
92
93 pkg_postinst() {
94 ewarn "The BestCrypt drivers are not free - Please purchace a license from "
95 ewarn "http://www.jetico.com/"
96 ewarn "full details /usr/share/doc/${PF}/html/bcwipe-help/wu_licen.htm"
97 }