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.4.2.ebuild ChangeLog mirall-1.4.0.ebuild
Date: Tue, 03 Dec 2013 03:18:09
Message-Id: 20131203031800.410A520035@flycatcher.gentoo.org
1 creffett 13/12/03 03:18:00
2
3 Modified: ChangeLog
4 Added: mirall-1.4.2.ebuild
5 Removed: mirall-1.4.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.29 net-misc/mirall/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?rev=1.29&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?rev=1.29&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?r1=1.28&r2=1.29
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v
21 retrieving revision 1.28
22 retrieving revision 1.29
23 diff -u -r1.28 -r1.29
24 --- ChangeLog 18 Sep 2013 18:59:41 -0000 1.28
25 +++ ChangeLog 3 Dec 2013 03:17:59 -0000 1.29
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-misc/mirall
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v 1.28 2013/09/18 18:59:41 johu Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v 1.29 2013/12/03 03:17:59 creffett Exp $
31 +
32 +*mirall-1.4.2 (03 Dec 2013)
33 +
34 + 03 Dec 2013; Chris Reffett <creffett@g.o> +mirall-1.4.2.ebuild,
35 + -mirall-1.4.0.ebuild:
36 + Version bump wrt bug 489582
37
38 18 Sep 2013; Johannes Huber <johu@g.o> mirall-1.4.0.ebuild:
39 Add missing dep on dev-qt/qtwebkit, bug #485264.
40
41
42
43 1.1 net-misc/mirall/mirall-1.4.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/mirall-1.4.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/mirall-1.4.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: mirall-1.4.2.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/mirall/mirall-1.4.2.ebuild,v 1.1 2013/12/03 03:17:59 creffett Exp $
53
54 EAPI=5
55
56 inherit cmake-utils
57
58 MY_P="${PN}-${PV/_/}"
59
60 DESCRIPTION="Synchronization of your folders with another computers"
61 HOMEPAGE="http://owncloud.org/"
62 SRC_URI="http://download.owncloud.com/download/${MY_P}.tar.bz2"
63
64 LICENSE="CC-BY-3.0 GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="doc"
68
69 RDEPEND="
70 dev-qt/qtcore:4
71 dev-qt/qtdbus:4
72 dev-qt/qtgui:4
73 dev-qt/qttest:4
74 dev-qt/qtwebkit:4
75 >=net-misc/csync-0.90.0
76 sys-fs/inotify-tools
77 "
78 DEPEND="${RDEPEND}
79 doc? (
80 dev-python/sphinx
81 dev-texlive/texlive-latexextra
82 virtual/latex-base
83 )
84 "
85
86 S=${WORKDIR}/${MY_P}
87
88 src_configure() {
89 export CSYNC_DIR="${EPREFIX}/usr/include/ocsync/"
90
91 local mycmakeargs=(
92 -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
93 $(cmake-utils_use_with doc)
94 )
95 cmake-utils_src_configure
96 }
97
98 src_compile() {
99 use doc && cmake-utils_src_compile -j1 doc
100 cmake-utils_src_compile
101 }
102
103 pkg_postinst() {
104 if ! has_version net-misc/csync[samba]; then
105 elog "For samba support, build net-misc/csync with USE=samba"
106 fi
107 if ! has_version net-misc/csync[sftp]; then
108 elog "For sftp support, build net-misc/csync with USE=sftp"
109 fi
110 }