Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-backup/cyphertite: cyphertite-2.0.2-r1.ebuild ChangeLog cyphertite-2.0.2.ebuild
Date: Sun, 06 Jul 2014 15:49:22
Message-Id: 20140706154917.D1AAF2004F@flycatcher.gentoo.org
1 grknight 14/07/06 15:49:17
2
3 Modified: ChangeLog
4 Added: cyphertite-2.0.2-r1.ebuild
5 Removed: cyphertite-2.0.2.ebuild
6 Log:
7 Revision bump to fix CFLAGS and deps as per bug 516498 and bug 516500
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 67C78E1D)
10
11 Revision Changes Path
12 1.2 app-backup/cyphertite/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/cyphertite/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/cyphertite/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/cyphertite/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-backup/cyphertite/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 26 Jun 2014 00:56:07 -0000 1.1
25 +++ ChangeLog 6 Jul 2014 15:49:17 -0000 1.2
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-backup/cyphertite
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-backup/cyphertite/ChangeLog,v 1.1 2014/06/26 00:56:07 grknight Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-backup/cyphertite/ChangeLog,v 1.2 2014/07/06 15:49:17 grknight Exp $
31 +
32 +*cyphertite-2.0.2-r1 (06 Jul 2014)
33 +
34 + 06 Jul 2014; Brian Evans <grknight@g.o> +cyphertite-2.0.2-r1.ebuild,
35 + -cyphertite-2.0.2.ebuild, files/cyphertite-2.0.2-fix-build.patch:
36 + Revision bump to fix CFLAGS and deps as per bug 516498 and bug 516500
37
38 *cyphertite-2.0.2 (26 Jun 2014)
39
40
41
42
43 1.1 app-backup/cyphertite/cyphertite-2.0.2-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/cyphertite/cyphertite-2.0.2-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/cyphertite/cyphertite-2.0.2-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: cyphertite-2.0.2-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-backup/cyphertite/cyphertite-2.0.2-r1.ebuild,v 1.1 2014/07/06 15:49:17 grknight Exp $
53
54 EAPI=5
55
56 inherit toolchain-funcs eutils multilib
57
58 DESCRIPTION="High Security, Zero-Knowledge Online Backup"
59 HOMEPAGE="https://www.cyphertite.com/"
60 SRC_URI="https://www.cyphertite.com/snapshots/source/${PV}/${PN}-full-${PV}.tar.gz"
61 LICENSE="ISC"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 DEPEND="
67 app-arch/xz-utils:0=
68 dev-db/sqlite:3=
69 >=dev-libs/openssl-1.0.1g:0=
70 dev-libs/expat:0=
71 dev-libs/libbsd:0=
72 dev-libs/libedit:0=
73 dev-libs/libevent:0=
74 >=dev-libs/lzo-2.0:2=
75 >=net-misc/curl-7.15.1:0=
76 sys-libs/zlib:0=
77 "
78 RDEPEND="${DEPEND}"
79
80 src_prepare() {
81 # Fix build system that assumes that modules are installed to the live system
82 epatch "${FILESDIR}/${P}-fix-build.patch"
83 }
84
85 src_compile() {
86 # Package has a home grown Makefile system. Make it work for Gentoo
87 emake INCDIR="${S}" WARNFLAGS="-Wall" OPTLEVEL="" DEBUG="" CC=$(tc-getCC) \
88 AR=$(tc-getAR) LOCALBASE="/usr" LIB.LINKSTATIC="" LIB.LINKDYNAMIC=""
89 }
90
91 src_install() {
92 # Only the main executable needs to be installed
93 emake -C cyphertite/cyphertite DESTDIR="${D}" LOCALBASE=usr LIBDIR=usr/$(get_libdir) LNFORCE=-s install
94
95 # Fix up broken man symlinks
96 rm "${D}"usr/share/man/man1/ct*.1 || die
97 dosym /usr/share/man/man1/cyphertite.1.bz2 /usr/share/man/man1/ct.1.bz2
98 dosym /usr/share/man/man1/cyphertitectl.1.bz2 /usr/share/man/man1/ctctl.1.bz2
99 dosym /usr/share/man/man1/cyphertitefb.1.bz2 /usr/share/man/man1/ctfb.1.bz2
100 }