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/mirall: mirall-1.2.1.ebuild ChangeLog
Date: Thu, 28 Feb 2013 23:12:27
Message-Id: 20130228231223.2573D2171D@flycatcher.gentoo.org
1 creffett 13/02/28 23:12:23
2
3 Modified: ChangeLog
4 Added: mirall-1.2.1.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.18 net-misc/mirall/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 7 Feb 2013 22:37:57 -0000 1.17
24 +++ ChangeLog 28 Feb 2013 23:12:22 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-misc/mirall
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v 1.17 2013/02/07 22:37:57 ulm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v 1.18 2013/02/28 23:12:22 creffett Exp $
30 +
31 +*mirall-1.2.1 (28 Feb 2013)
32 +
33 + 28 Feb 2013; Chris Reffett <creffett@g.o> +mirall-1.2.1.ebuild:
34 + Version bump wrt bug 459476
35
36 07 Feb 2013; Ulrich Müller <ulm@g.o> mirall-1.2.0.ebuild:
37 Move Creative Commons licenses to shorter names.
38
39
40
41 1.1 net-misc/mirall/mirall-1.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/mirall-1.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/mirall-1.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mirall-1.2.1.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/mirall/mirall-1.2.1.ebuild,v 1.1 2013/02/28 23:12:22 creffett Exp $
51
52 EAPI=5
53
54 inherit cmake-utils
55
56 MY_P="${PN}-${PV/_/}"
57
58 DESCRIPTION="Synchronization of your folders with another computers"
59 HOMEPAGE="http://owncloud.org/"
60 SRC_URI="http://download.owncloud.com/download/${MY_P}.tar.bz2"
61
62 LICENSE="CC-BY-3.0 GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc"
66
67 RDEPEND="
68 >=net-misc/csync-0.70.4
69 sys-fs/inotify-tools
70 x11-libs/qt-core:4
71 x11-libs/qt-gui:4
72 x11-libs/qt-test:4
73 "
74 DEPEND="${RDEPEND}
75 doc? ( dev-python/sphinx virtual/latex-base )
76 "
77
78 S="${WORKDIR}/${MY_P}"
79
80 src_prepare() {
81 # Yay for fcked detection.
82 export CSYNC_DIR="${EPREFIX}/usr/include/ocsync/"
83
84 epatch "${FILESDIR}/${PN}-1.2.0_beta2-automagicness.patch"
85 }
86
87 src_configure() {
88 local mycmakeargs=(
89 $(cmake-utils_use_with doc SPHINX)
90 )
91 cmake-utils_src_configure
92 }
93
94 pkg_postinst() {
95 if ! has_version net-misc/csync[samba]; then
96 elog "For samba support, build net-misc/csync with USE=samba"
97 fi
98 if ! has_version net-misc/csync[sftp]; then
99 elog "For sftp support, build net-misc/csync with USE=sftp"
100 fi
101 }