Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/mirall: mirall-1.2.5.ebuild ChangeLog mirall-1.2.1-r1.ebuild
Date: Mon, 29 Apr 2013 15:56:35
Message-Id: 20130429155628.E694D2171D@flycatcher.gentoo.org
1 kensington 13/04/29 15:56:28
2
3 Modified: ChangeLog
4 Added: mirall-1.2.5.ebuild
5 Removed: mirall-1.2.1-r1.ebuild
6 Log:
7 Version bump. Remove old.
8
9 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
10
11 Revision Changes Path
12 1.24 net-misc/mirall/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 29 Apr 2013 15:24:18 -0000 1.23
25 +++ ChangeLog 29 Apr 2013 15:56:28 -0000 1.24
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.23 2013/04/29 15:24:18 kensington Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v 1.24 2013/04/29 15:56:28 kensington Exp $
31 +
32 +*mirall-1.2.5 (29 Apr 2013)
33 +
34 + 29 Apr 2013; Michael Palimaka <kensington@g.o> +mirall-1.2.5.ebuild,
35 + -mirall-1.2.1-r1.ebuild:
36 + Version bump. Remove old.
37
38 29 Apr 2013; Michael Palimaka <kensington@g.o> mirall-1.2.4.ebuild:
39 Raise net-misc/csync dependency.
40
41
42
43 1.1 net-misc/mirall/mirall-1.2.5.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/mirall-1.2.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/mirall-1.2.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: mirall-1.2.5.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.2.5.ebuild,v 1.1 2013/04/29 15:56:28 kensington 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 >=net-misc/csync-0.70.7
71 sys-fs/inotify-tools
72 dev-qt/qtcore:4
73 dev-qt/qtgui:4
74 dev-qt/qttest:4
75 "
76 DEPEND="${RDEPEND}
77 doc? (
78 dev-python/sphinx
79 dev-texlive/texlive-latexextra
80 virtual/latex-base
81 )
82 "
83
84 S=${WORKDIR}/${MY_P}
85
86 src_configure() {
87 export CSYNC_DIR="${EPREFIX}/usr/include/ocsync/"
88
89 local mycmakeargs=(
90 -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
91 $(cmake-utils_use_with doc)
92 )
93 cmake-utils_src_configure
94 }
95
96 src_compile() {
97 use doc && cmake-utils_src_compile -j1 doc
98 cmake-utils_src_compile
99 }
100
101 src_install() {
102 cmake-utils_src_install
103 mkdir "${D}/etc/"
104 mv "${D}/usr/etc/sync-exclude.lst" "${D}/etc/"
105 rm -r "${D}/usr/etc/"
106 }
107
108 pkg_postinst() {
109 if ! has_version net-misc/csync[samba]; then
110 elog "For samba support, build net-misc/csync with USE=samba"
111 fi
112 if ! has_version net-misc/csync[sftp]; then
113 elog "For sftp support, build net-misc/csync with USE=sftp"
114 fi
115 }