Gentoo Archives: gentoo-commits

From: "Chris Reffett (creffett)" <creffett@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/csync: csync-0.90.4.ebuild ChangeLog csync-0.90.0.ebuild
Date: Tue, 03 Dec 2013 03:13:13
Message-Id: 20131203031309.271E220035@flycatcher.gentoo.org
1 creffett 13/12/03 03:13:09
2
3 Modified: ChangeLog
4 Added: csync-0.90.4.ebuild
5 Removed: csync-0.90.0.ebuild
6 Log:
7 Version bump wrt bug 489582
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 42618354)
10
11 Revision Changes Path
12 1.20 net-misc/csync/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/ChangeLog?rev=1.20&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/ChangeLog?rev=1.20&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/ChangeLog?r1=1.19&r2=1.20
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/csync/ChangeLog,v
21 retrieving revision 1.19
22 retrieving revision 1.20
23 diff -u -r1.19 -r1.20
24 --- ChangeLog 17 Sep 2013 20:41:56 -0000 1.19
25 +++ ChangeLog 3 Dec 2013 03:13:08 -0000 1.20
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-misc/csync
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/csync/ChangeLog,v 1.19 2013/09/17 20:41:56 creffett Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/csync/ChangeLog,v 1.20 2013/12/03 03:13:08 creffett Exp $
31 +
32 +*csync-0.90.4 (03 Dec 2013)
33 +
34 + 03 Dec 2013; Chris Reffett <creffett@g.o> +csync-0.90.4.ebuild,
35 + -csync-0.90.0.ebuild:
36 + Version bump wrt bug 489582
37
38 17 Sep 2013; Chris Reffett <creffett@g.o> -csync-0.70.6.ebuild,
39 -csync-0.70.7.ebuild, -csync-0.80.0.ebuild,
40
41
42
43 1.1 net-misc/csync/csync-0.90.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/csync-0.90.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/csync-0.90.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: csync-0.90.4.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/csync/csync-0.90.4.ebuild,v 1.1 2013/12/03 03:13:08 creffett Exp $
53
54 EAPI=5
55
56 inherit cmake-utils
57
58 DESCRIPTION="A file synchronizer especially designed for you, the normal user"
59 HOMEPAGE="http://csync.org/"
60 SRC_URI="http://download.owncloud.com/download/o${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc iconv samba +sftp test"
66
67 RESTRICT="test"
68
69 RDEPEND="
70 dev-db/sqlite:3
71 >=dev-libs/iniparser-3.1
72 net-libs/neon[ssl]
73 iconv? ( virtual/libiconv )
74 samba? ( net-fs/samba )
75 sftp? ( net-libs/libssh )
76 "
77 DEPEND="${DEPEND}
78 app-text/asciidoc
79 doc? ( app-doc/doxygen )
80 test? ( dev-libs/check dev-util/cmocka )
81 "
82
83 S="${WORKDIR}/o${P}"
84
85 src_prepare() {
86 cmake-utils_src_prepare
87
88 # proper docdir
89 sed -e "s:/doc/ocsync:/doc/${PF}:" \
90 -i doc/CMakeLists.txt || die
91 }
92
93 src_configure() {
94 local mycmakeargs=(
95 $(cmake-utils_use test UNIT_TESTING)
96 $(cmake-utils_use_find_package doc Doxygen)
97 $(cmake-utils_use_find_package samba Libsmbclient)
98 $(cmake-utils_use_find_package sftp LibSSH)
99 )
100 cmake-utils_src_configure
101 }
102
103 src_install() {
104 cmake-utils_src_install
105 mv "${D}/usr/etc/ocsync" "${D}/etc/"
106 rm -r "${D}/usr/etc/"
107 }