Gentoo Archives: gentoo-commits

From: "Maciej Mrozowski (reavertm)" <reavertm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/kdevplatform: kdevplatform-1.1.1.ebuild ChangeLog
Date: Sun, 28 Nov 2010 04:16:37
Message-Id: 20101128041629.052EF20051@flycatcher.gentoo.org
1 reavertm 10/11/28 04:16:29
2
3 Modified: ChangeLog
4 Added: kdevplatform-1.1.1.ebuild
5 Log:
6 Version bump 1.1.1
7
8 (Portage version: 2.2.0_alpha6/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.46 dev-util/kdevplatform/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevplatform/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevplatform/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevplatform/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/kdevplatform/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 26 Oct 2010 19:51:00 -0000 1.45
24 +++ ChangeLog 28 Nov 2010 04:16:28 -0000 1.46
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-util/kdevplatform
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevplatform/ChangeLog,v 1.45 2010/10/26 19:51:00 reavertm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevplatform/ChangeLog,v 1.46 2010/11/28 04:16:28 reavertm Exp $
30 +
31 +*kdevplatform-1.1.1 (28 Nov 2010)
32 +
33 + 28 Nov 2010; Maciej Mrozowski <reavertm@g.o>
34 + +kdevplatform-1.1.1.ebuild:
35 + Version bump
36
37 *kdevplatform-1.1.0 (26 Oct 2010)
38
39
40
41
42 1.1 dev-util/kdevplatform/kdevplatform-1.1.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevplatform/kdevplatform-1.1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/kdevplatform/kdevplatform-1.1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: kdevplatform-1.1.1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/kdevplatform/kdevplatform-1.1.1.ebuild,v 1.1 2010/11/28 04:16:28 reavertm Exp $
52
53 EAPI="2"
54
55 # Bug 276208
56 RESTRICT="test"
57
58 KDE_LINGUAS="ca ca@valencia da de en_GB es et fi gl it nds nl pt pt_BR sl sv th uk zh_CN zh_TW"
59
60 KMNAME="kdevelop"
61 inherit kde4-base
62
63 DESCRIPTION="KDE development support libraries and apps"
64
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
66 # Moved to playground for now
67 # bazaar kompare mercurial
68 LICENSE="GPL-2 LGPL-2"
69 IUSE="cvs debug git reviewboard subversion"
70
71 # Moved to playground for now
72 # bazaar? ( dev-vcs/bzr )
73 # kompare? ( >=kde-base/kompare-${KDE_MINIMAL} )
74 # mercurial? ( dev-vcs/mercurial )
75 # block - some plugins moved to kdevplatform from kdevelop
76 DEPEND="
77 dev-libs/boost
78 reviewboard? ( dev-libs/qjson )
79 subversion? ( >=dev-vcs/subversion-1.3 )
80 "
81 RDEPEND="${DEPEND}
82 !<dev-util/kdevelop-${KDEVELOP_VERSION}
83 !dev-util/kdevelop-git
84 $(add_kdebase_dep konsole)
85 cvs? ( dev-vcs/cvs )
86 git? ( dev-vcs/git )
87 "
88
89 src_prepare() {
90 kde4-base_src_prepare
91
92 # FindKDevPlatform.cmake is installed by kdelibs
93 sed -i \
94 -e '/cmakeFiles/s/^/#DONOTINSTALL/' \
95 cmake/modules/CMakeLists.txt || die
96 }
97
98 # Moved to playground for now
99 # $(cmake-utils_use_build bazaar)
100 # $(cmake-utils_use_with kompare)
101 # $(cmake-utils_use_build mercurial)
102 src_configure() {
103 mycmakeargs=(
104 $(cmake-utils_use_build cvs)
105 $(cmake-utils_use_build git)
106 $(cmake-utils_use_with reviewboard QJSON)
107 $(cmake-utils_use_build subversion)
108 $(cmake-utils_use_with subversion SubversionLibrary)
109 )
110
111 kde4-base_src_configure
112 }