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.70.4.ebuild ChangeLog
Date: Thu, 28 Feb 2013 23:10:44
Message-Id: 20130228231040.7302E2171D@flycatcher.gentoo.org
1 creffett 13/02/28 23:10:40
2
3 Modified: ChangeLog
4 Added: csync-0.70.4.ebuild
5 Log:
6 Version bump wrt bug 459476
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 42618354)
9
10 Revision Changes Path
11 1.13 net-misc/csync/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/csync/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 31 Jan 2013 15:25:18 -0000 1.12
24 +++ ChangeLog 28 Feb 2013 23:10:40 -0000 1.13
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-misc/csync
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/csync/ChangeLog,v 1.12 2013/01/31 15:25:18 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/csync/ChangeLog,v 1.13 2013/02/28 23:10:40 creffett Exp $
30 +
31 +*csync-0.70.4 (28 Feb 2013)
32 +
33 + 28 Feb 2013; Chris Reffett <creffett@g.o> +csync-0.70.4.ebuild:
34 + Version bump wrt bug 459476
35
36 *csync-0.70.3 (31 Jan 2013)
37
38
39
40
41 1.1 net-misc/csync/csync-0.70.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/csync-0.70.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/csync-0.70.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: csync-0.70.4.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-misc/csync/csync-0.70.4.ebuild,v 1.1 2013/02/28 23:10:40 creffett Exp $
51
52 EAPI=5
53
54 inherit base cmake-utils
55
56 DESCRIPTION="A file synchronizer especially designed for you, the normal user"
57 HOMEPAGE="http://csync.org/"
58 SRC_URI="http://download.owncloud.com/download/o${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc iconv log samba +sftp test +webdav"
64
65 RDEPEND="
66 dev-db/sqlite:3
67 >=dev-libs/iniparser-3.1
68 dev-libs/openssl:0
69 iconv? ( virtual/libiconv )
70 log? ( dev-libs/log4c )
71 samba? ( net-fs/samba )
72 sftp? ( net-libs/libssh )
73 webdav? ( net-libs/neon )
74 "
75 DEPEND="${DEPEND}
76 app-text/asciidoc
77 doc? ( app-doc/doxygen )
78 test? ( dev-libs/check dev-util/cmocka )
79 "
80
81 PATCHES=(
82 "${FILESDIR}/${PN}-0.70.1-automagicness.patch"
83 "${FILESDIR}/${PN}-0.60.2-removebadtest.patch"
84 )
85
86 S="${WORKDIR}/o${P}"
87
88 src_prepare() {
89 base_src_prepare
90
91 if ! use doc; then
92 sed -i \
93 -e 's:add_subdirectory(doc)::' \
94 CMakeLists.txt || die
95 fi
96
97 # proper docdir
98 sed -i \
99 -e "s:/doc/ocsync:/doc/${PF}:" \
100 doc/CMakeLists.txt || die
101 }
102
103 src_configure() {
104 local mycmakeargs=(
105 "-DLOG_TO_CALLBACK=ON"
106 $(cmake-utils_use test UNIT_TESTING)
107 $(cmake-utils_use_with doc APIDOC)
108 $(cmake-utils_use_with log Log4C)
109 $(cmake-utils_use_with samba Libsmbclient)
110 $(cmake-utils_use_with sftp LibSSH)
111 $(cmake-utils_use_with webdav Neon)
112 )
113 cmake-utils_src_configure
114 }