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