Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/bcwipe: bcwipe-1.7_p7.ebuild ChangeLog
Date: Sat, 21 Mar 2009 23:06:19
Message-Id: E1LlAGa-0003Os-KZ@stork.gentoo.org
1 arfrever 09/03/21 23:06:12
2
3 Modified: ChangeLog
4 Added: bcwipe-1.7_p7.ebuild
5 Log:
6 Version bump. Respect CFLAGS and LDFLAGS (bug #239967).
7 (Portage version: 13139-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.31 app-crypt/bcwipe/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 9 Apr 2008 17:27:25 -0000 1.30
23 +++ ChangeLog 21 Mar 2009 23:06:12 -0000 1.31
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-crypt/bcwipe
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.30 2008/04/09 17:27:25 alonbl Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.31 2009/03/21 23:06:12 arfrever Exp $
30 +
31 +*bcwipe-1.7_p7 (21 Mar 2009)
32 +
33 + 21 Mar 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + -files/bcwipe-1.6_p8-qa.patch, +files/bcwipe-1.7_p7-build.patch,
35 + +bcwipe-1.7_p7.ebuild:
36 + Version bump. Respect CFLAGS and LDFLAGS (bug #239967).
37
38 09 Apr 2008; Alon Bar-Lev <alonbl@g.o> bcwipe-1.7_p2.ebuild:
39 Fix license reference, bug#216864, thanks to Philippe Chaintreuil
40
41
42
43 1.1 app-crypt/bcwipe/bcwipe-1.7_p7.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/bcwipe-1.7_p7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/bcwipe-1.7_p7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: bcwipe-1.7_p7.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/bcwipe-1.7_p7.ebuild,v 1.1 2009/03/21 23:06:12 arfrever Exp $
53
54 inherit toolchain-funcs eutils
55
56 MY_PV="${PV/_p/-}"
57
58 DESCRIPTION="BCWipe secure file removal utility"
59 HOMEPAGE="http://www.jetico.com/"
60 SRC_URI="http://www.jetico.com/linux/BCWipe-${MY_PV}.tar.gz
61 doc? ( http://www.jetico.com/linux/BCWipe.doc.tgz )"
62
63 LICENSE="bestcrypt"
64 SLOT="0"
65 IUSE="doc"
66 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
67
68 DEPEND=""
69 RDEPEND=""
70
71 S="${WORKDIR}/${PN}-${MY_PV}"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}/${P}-build.patch"
77 }
78
79 src_compile() {
80 emake CC="$(tc-getCC)" || die "Make failed"
81 }
82
83 src_test() {
84 echo "abc123" >> testfile
85 ./bcwipe -f testfile || die "bcwipe test failed"
86 [ -f testfile ] && die "test file still exists. bcwipe should of deleted it"
87 }
88
89 src_install() {
90 dobin bcwipe || die "dobin bcwipe failed"
91 doman bcwipe.1 || die "doman bcwipe.1 failed"
92 if use doc ; then
93 dohtml -r ../bcwipe-help || die "dohtml failed"
94 fi
95 }
96
97 pkg_postinst() {
98 ewarn "The BestCrypt drivers are not free - Please purchace a license from "
99 ewarn "http://www.jetico.com/"
100 ewarn "full details /usr/share/doc/${PF}/html/bcwipe-help/wu_licen.htm"
101 }