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: ChangeLog libyui-3.0.13.ebuild libyui-2.21.1.ebuild
Date: Tue, 23 Sep 2014 17:12:08
Message-Id: 20140923171205.025F960E3@oystercatcher.gentoo.org
1 pinkbyte 14/09/23 17:12:04
2
3 Modified: ChangeLog
4 Added: libyui-3.0.13.ebuild
5 Removed: libyui-2.21.1.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.4 x11-libs/libyui/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libyui/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 30 Jul 2012 18:14:12 -0000 1.3
25 +++ ChangeLog 23 Sep 2014 17:12:04 -0000 1.4
26 @@ -1,6 +1,13 @@
27 # ChangeLog for x11-libs/libyui
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libyui/ChangeLog,v 1.3 2012/07/30 18:14:12 miska Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libyui/ChangeLog,v 1.4 2014/09/23 17:12:04 pinkbyte Exp $
32 +
33 +*libyui-3.0.13 (23 Sep 2014)
34 +
35 + 23 Sep 2014; Sergey Popov <pinkbyte@g.o> -libyui-2.21.1.ebuild,
36 + +libyui-3.0.13.ebuild, -files/libyui-2.21.1-gcc-47.patch,
37 + +files/libyui-3.0.13-fix-qt-libs-check.patch:
38 + QA: Version bump, drop old, wrt bug #470860
39
40 30 Jul 2012; Michal Hrusecky <miska@g.o> libyui-2.21.1.ebuild,
41 +files/libyui-2.21.1-gcc-47.patch:
42
43
44
45 1.1 x11-libs/libyui/libyui-3.0.13.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui/libyui-3.0.13.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libyui/libyui-3.0.13.ebuild?rev=1.1&content-type=text/plain
49
50 Index: libyui-3.0.13.ebuild
51 ===================================================================
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libyui/libyui-3.0.13.ebuild,v 1.1 2014/09/23 17:12:04 pinkbyte Exp $
55
56 EAPI=5
57
58 inherit cmake-utils
59
60 DESCRIPTION="UI abstraction library"
61 HOMEPAGE="https://github.com/libyui/libyui"
62 SRC_URI="https://github.com/libyui/${PN}/archive/${PN}/master/${PV}.tar.gz -> ${P}.tar.gz"
63
64 LICENSE="GPL-3"
65 SLOT="0/6"
66 KEYWORDS="~amd64 ~x86"
67
68 IUSE="gtk ncurses qt4 static-libs"
69
70 # Only Boost headers are needed
71 DEPEND="dev-libs/boost"
72 PDEPEND="
73 qt4? ( x11-libs/libyui-qt:${SLOT} )
74 ncurses? ( x11-libs/libyui-ncurses:${SLOT} )
75 gtk? ( x11-libs/libyui-gtk:${SLOT} )
76 "
77
78 PATCHES=( "${FILESDIR}/${P}-fix-qt-libs-check.patch" )
79
80 REQUIRED_USE="|| ( gtk ncurses qt4 )"
81
82 S="${WORKDIR}/${PN}-${PN}-master-${PV}"
83
84 src_prepare() {
85 cp buildtools/CMakeLists.common CMakeLists.txt || die
86
87 # TODO: set proper docs deps and USE flag for building them
88 sed -i -e '/SET_AUTODOCS/d' CMakeLists.txt || die 'sed on CMakeLists.txt failed'
89 sed -i -e 's/src examples/src/' PROJECTINFO.cmake || die 'sed on PROJECTINFO.cmake failed'
90
91 cmake-utils_src_prepare
92 }
93
94 src_configure() {
95 local mycmakeargs=(
96 -DENABLE_WERROR=OFF
97 -DDOC_DIR="${EPREFIX}/usr/share/doc/${P}"
98 -DRESPECT_FLAGS=ON
99 $(cmake-utils_use_enable static-libs STATIC)
100 )
101 cmake-utils_src_configure
102 }