Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/mirall: mirall-1.2.0.ebuild ChangeLog mirall-1.2.0_beta2.ebuild mirall-1.1.4.ebuild mirall-1.1.2.ebuild
Date: Thu, 31 Jan 2013 15:26:26
Message-Id: 20130131152622.DCBF22171D@flycatcher.gentoo.org
1 scarabeus 13/01/31 15:26:22
2
3 Modified: ChangeLog
4 Added: mirall-1.2.0.ebuild
5 Removed: mirall-1.2.0_beta2.ebuild mirall-1.1.4.ebuild
6 mirall-1.1.2.ebuild
7 Log:
8 Version bump to mirall-1.2.0. Punt older.
9
10 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
11
12 Revision Changes Path
13 1.15 net-misc/mirall/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?rev=1.15&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?rev=1.15&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/ChangeLog?r1=1.14&r2=1.15
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v
22 retrieving revision 1.14
23 retrieving revision 1.15
24 diff -u -r1.14 -r1.15
25 --- ChangeLog 22 Jan 2013 21:38:46 -0000 1.14
26 +++ ChangeLog 31 Jan 2013 15:26:22 -0000 1.15
27 @@ -1,6 +1,12 @@
28 # ChangeLog for net-misc/mirall
29 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v 1.14 2013/01/22 21:38:46 creffett Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/net-misc/mirall/ChangeLog,v 1.15 2013/01/31 15:26:22 scarabeus Exp $
32 +
33 +*mirall-1.2.0 (31 Jan 2013)
34 +
35 + 31 Jan 2013; Tomáš Chvátal <scarabeus@g.o> +mirall-1.2.0.ebuild,
36 + -mirall-1.1.2.ebuild, -mirall-1.1.4.ebuild, -mirall-1.2.0_beta2.ebuild:
37 + Version bump to mirall-1.2.0. Punt older.
38
39 22 Jan 2013; Chris Reffett <creffett@g.o> mirall-1.2.0_beta2.ebuild:
40 Fix use of { instead of ( in cmake-utils_use_with (though documentation
41
42
43
44 1.1 net-misc/mirall/mirall-1.2.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/mirall-1.2.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mirall/mirall-1.2.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: mirall-1.2.0.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-misc/mirall/mirall-1.2.0.ebuild,v 1.1 2013/01/31 15:26:22 scarabeus Exp $
54
55 EAPI=5
56
57 LANG_DIR="translations"
58 PLOCALES="ca cs_CZ da de el en eo es es_AR et_EE eu fa fi_FI fr gl he hr hu_HU it ja_JP ko lb lt_LT mk
59 nb_NO nl oc pl pt_BR pt_PT ro ru ru_RU sk_SK sl sr@latin sv ta_LK tr uk vi zh_CN zh_TW"
60 inherit cmake-utils l10n
61
62 MY_P="${PN}-${PV/_/}"
63
64 DESCRIPTION="Synchronization of your folders with another computers"
65 HOMEPAGE="http://owncloud.org/"
66 SRC_URI="http://download.owncloud.com/download/${MY_P}.tar.bz2"
67
68 LICENSE="CCPL-Attribution-3.0 GPL-2"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE="doc"
72
73 RDEPEND="
74 >=net-misc/csync-0.70.3
75 sys-fs/inotify-tools
76 x11-libs/qt-core:4
77 x11-libs/qt-gui:4
78 x11-libs/qt-test:4
79 "
80 DEPEND="${RDEPEND}
81 doc? ( dev-python/sphinx virtual/latex-base )
82 "
83
84 S="${WORKDIR}/${MY_P}"
85
86 src_prepare() {
87 # Yay for fcked detection.
88 export CSYNC_DIR="${EPREFIX}/usr/include/ocsync/"
89
90 local lang
91 for lang in ${PLOCALES} ; do
92 if ! use linguas_${lang} ; then
93 rm ${LANG_DIR}/${PN}_${lang}.ts
94 fi
95 done
96 epatch "${FILESDIR}/${PN}-1.2.0_beta2-automagicness.patch"
97 }
98
99 src_configure() {
100 local mycmakeargs=(
101 $(cmake-utils_use_with doc SPHINX)
102 )
103 cmake-utils_src_configure
104 }
105
106 pkg_postinst() {
107 if ! has_version net-misc/csync[samba]; then
108 elog "For samba support, build net-misc/csync with USE=samba"
109 fi
110 if ! has_version net-misc/csync[sftp]; then
111 elog "For sftp support, build net-misc/csync with USE=sftp"
112 fi
113 }