Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libyui-gtk: ChangeLog libyui-gtk-2.44.5.ebuild libyui-gtk-2.21.96.ebuild
Date: Tue, 23 Sep 2014 17:16:16
Message-Id: 20140923171612.9B70860E7@oystercatcher.gentoo.org
1 pinkbyte 14/09/23 17:16:12
2
3 Modified: ChangeLog
4 Added: libyui-gtk-2.44.5.ebuild
5 Removed: libyui-gtk-2.21.96.ebuild
6 Log:
7 QA: Version bump, drop old, wrt bug #470860
8
9 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
10
11 Revision Changes Path
12 1.2 x11-libs/libyui-gtk/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui-gtk/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui-gtk/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui-gtk/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libyui-gtk/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 15 Aug 2011 09:32:42 -0000 1.1
25 +++ ChangeLog 23 Sep 2014 17:16:12 -0000 1.2
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-libs/libyui-gtk
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libyui-gtk/ChangeLog,v 1.1 2011/08/15 09:32:42 miska Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libyui-gtk/ChangeLog,v 1.2 2014/09/23 17:16:12 pinkbyte Exp $
32 +
33 +*libyui-gtk-2.44.5 (23 Sep 2014)
34 +
35 + 23 Sep 2014; Sergey Popov <pinkbyte@g.o> -libyui-gtk-2.21.96.ebuild,
36 + +libyui-gtk-2.44.5.ebuild:
37 + QA: Version bump, drop old, wrt bug #470860
38
39 *libyui-gtk-2.21.96 (15 Aug 2011)
40
41
42
43
44 1.1 x11-libs/libyui-gtk/libyui-gtk-2.44.5.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui-gtk/libyui-gtk-2.44.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui-gtk/libyui-gtk-2.44.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libyui-gtk-2.44.5.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libyui-gtk/libyui-gtk-2.44.5.ebuild,v 1.1 2014/09/23 17:16:12 pinkbyte Exp $
54
55 EAPI=5
56
57 inherit cmake-utils
58
59 DESCRIPTION="UI abstraction library - GTK plugin"
60 HOMEPAGE="https://github.com/libyui/libyui-gtk"
61 SRC_URI="https://github.com/libyui/${PN}/archive/${PN}/master/${PV}.tar.gz -> ${P}.tar.gz"
62
63 LICENSE="GPL-3"
64 SLOT="0/6"
65 KEYWORDS="~amd64 ~x86"
66
67 IUSE="static-libs"
68
69 RDEPEND="
70 x11-libs/gtk+:3
71 x11-libs/libyui:${SLOT}
72 "
73 # Only Boost headers are needed
74 DEPEND="${RDEPEND}
75 dev-libs/boost"
76
77 S="${WORKDIR}/${PN}-${PN}-master-${PV}"
78
79 src_prepare() {
80 cp "${EPREFIX}/usr/share/libyui/buildtools/CMakeLists.common" CMakeLists.txt || die
81
82 # TODO: set proper docs deps and USE flag for building them
83 sed -i -e '/SET_AUTODOCS/d' CMakeLists.txt || die 'sed on CMakeLists.txt failed'
84 sed -i -e 's/src examples/src/' PROJECTINFO.cmake || die 'sed on PROJECTINFO.cmake failed'
85
86 cmake-utils_src_prepare
87 }
88
89 src_configure() {
90 local mycmakeargs=(
91 -DENABLE_EXAMPLES=OFF
92 -DENABLE_WERROR=OFF
93 -DDOC_DIR="${EPREFIX}/usr/share/doc/${P}"
94 -DRESPECT_FLAGS=ON
95 $(cmake-utils_use_enable static-libs STATIC)
96 )
97 cmake-utils_src_configure
98 }