Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/korundum: korundum-4.7.3.ebuild ChangeLog
Date: Wed, 02 Nov 2011 20:57:07
Message-Id: 20111102204803.8F4432004B@flycatcher.gentoo.org
1 alexxy 11/11/02 20:48:03
2
3 Modified: ChangeLog
4 Added: korundum-4.7.3.ebuild
5 Log:
6 [kde-base] KDE SC 4.7.3
7
8 (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.92 kde-base/korundum/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/korundum/ChangeLog?rev=1.92&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/korundum/ChangeLog?rev=1.92&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/korundum/ChangeLog?r1=1.91&r2=1.92
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/korundum/ChangeLog,v
20 retrieving revision 1.91
21 retrieving revision 1.92
22 diff -u -r1.91 -r1.92
23 --- ChangeLog 28 Oct 2011 19:03:23 -0000 1.91
24 +++ ChangeLog 2 Nov 2011 20:48:03 -0000 1.92
25 @@ -1,6 +1,11 @@
26 # ChangeLog for kde-base/korundum
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/korundum/ChangeLog,v 1.91 2011/10/28 19:03:23 dilfridge Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/korundum/ChangeLog,v 1.92 2011/11/02 20:48:03 alexxy Exp $
30 +
31 +*korundum-4.7.3 (02 Nov 2011)
32 +
33 + 02 Nov 2011; Alexey Shvetsov <alexxy@g.o> +korundum-4.7.3.ebuild:
34 + Version bump KDE SC 4.7.3
35
36 28 Oct 2011; Andreas K. Huettel <dilfridge@g.o>
37 -korundum-4.7.1.ebuild:
38
39
40
41 1.1 kde-base/korundum/korundum-4.7.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/korundum/korundum-4.7.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/korundum/korundum-4.7.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: korundum-4.7.3.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/kde-base/korundum/korundum-4.7.3.ebuild,v 1.1 2011/11/02 20:48:03 alexxy Exp $
51
52 EAPI=4
53
54 OPENGL_REQUIRED="always"
55 KDE_SCM="git"
56
57 USE_RUBY="ruby18"
58 # No ruby19 for three reasons:
59 # 1) it does not build (yet) - will likely be solved soon
60 # 2) cmake bails when configuring twice or more - solved with CMAKE_IN_SOURCE_BUILD=1
61 # 3) the ebuild can only be installed for one ruby variant, otherwise the compiled
62 # files with identical path+name will overwrite each other - difficult :(
63
64 inherit kde4-base ruby-ng
65
66 DESCRIPTION="KDE Ruby bindings"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="akonadi debug kate okular semantic-desktop"
69
70 DEPEND="
71 $(add_kdebase_dep qtruby)
72 $(add_kdebase_dep smokekde 'akonadi?,kate?,okular?,semantic-desktop=')
73 $(add_kdebase_dep smokeqt)
74 "
75 RDEPEND="${DEPEND}
76 "
77
78 # Split from kdebindings-ruby in 4.7
79 add_blocker kdebindings-ruby
80
81 pkg_setup() {
82 ruby-ng_pkg_setup
83 kde4-base_pkg_setup
84 }
85
86 src_unpack() {
87 local S="${WORKDIR}/${P}"
88 kde4-base_src_unpack
89
90 cd "${WORKDIR}"
91 mkdir all
92 mv ${P} all/ || die "Could not move sources"
93 }
94
95 all_ruby_prepare() {
96 kde4-base_src_prepare
97 }
98
99 each_ruby_configure() {
100 CMAKE_USE_DIR=${S}
101 mycmakeargs=(
102 -DRUBY_LIBRARY=$(ruby_get_libruby)
103 -DRUBY_INCLUDE_PATH=$(ruby_get_hdrdir)
104 -DRUBY_EXECUTABLE=${RUBY}
105 $(cmake-utils_use_with akonadi)
106 $(cmake-utils_use_with akonadi KdepimLibs)
107 $(cmake-utils_use_disable kate)
108 $(cmake-utils_use_with okular)
109 $(cmake-utils_use_with semantic-desktop Nepomuk)
110 $(cmake-utils_use_with semantic-desktop Soprano)
111 )
112 kde4-base_src_configure
113 }
114
115 each_ruby_compile() {
116 CMAKE_USE_DIR=${S}
117 kde4-base_src_compile
118 }
119
120 each_ruby_install() {
121 CMAKE_USE_DIR=${S}
122 kde4-base_src_install
123 }