Gentoo Archives: gentoo-commits

From: "Matt Turner (mattst88)" <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/waffle: waffle-1.5.1.ebuild ChangeLog
Date: Thu, 29 Jan 2015 18:21:17
Message-Id: 20150129182110.CC311109B3@oystercatcher.gentoo.org
1 mattst88 15/01/29 18:21:10
2
3 Modified: ChangeLog
4 Added: waffle-1.5.1.ebuild
5 Log:
6 Version bump to 1.5.1, bug 538098.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
9
10 Revision Changes Path
11 1.11 media-libs/waffle/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/waffle/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/waffle/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/waffle/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/waffle/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 16 Dec 2014 03:21:59 -0000 1.10
24 +++ ChangeLog 29 Jan 2015 18:21:10 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/waffle
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/waffle/ChangeLog,v 1.10 2014/12/16 03:21:59 mattst88 Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/waffle/ChangeLog,v 1.11 2015/01/29 18:21:10 mattst88 Exp $
31 +
32 +*waffle-1.5.1 (29 Jan 2015)
33 +
34 + 29 Jan 2015; Matt Turner <mattst88@g.o> +waffle-1.5.1.ebuild:
35 + Version bump to 1.5.1, bug 538098.
36
37 *waffle-1.5.0 (16 Dec 2014)
38
39
40
41
42 1.1 media-libs/waffle/waffle-1.5.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/waffle/waffle-1.5.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/waffle/waffle-1.5.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: waffle-1.5.1.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/waffle/waffle-1.5.1.ebuild,v 1.1 2015/01/29 18:21:10 mattst88 Exp $
52
53 EAPI=5
54
55 EGIT_REPO_URI="git://github.com/waffle-gl/waffle.git"
56
57 if [[ ${PV} = 9999* ]]; then
58 GIT_ECLASS="git-2"
59 fi
60
61 inherit cmake-utils cmake-multilib ${GIT_ECLASS}
62
63 DESCRIPTION="Library that allows selection of GL API and of window system at runtime"
64 HOMEPAGE="http://people.freedesktop.org/~chadversary/waffle/"
65
66 if [[ $PV = 9999* ]]; then
67 KEYWORDS=""
68 else
69 SRC_URI="http://people.freedesktop.org/~chadversary/waffle/files/release/${P}/${P}.tar.xz"
70 KEYWORDS="~amd64 ~arm ~x86"
71 fi
72
73 LICENSE="BSD-2"
74 SLOT="0"
75 IUSE="doc egl gbm test wayland"
76
77 RDEPEND="
78 >=media-libs/mesa-9.1.6[egl?,gbm?,${MULTILIB_USEDEP}]
79 >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
80 wayland? ( >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}] )
81 gbm? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] )
82 >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
83 >=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]"
84 DEPEND="${RDEPEND}
85 >=x11-proto/xcb-proto-1.8-r3[${MULTILIB_USEDEP}]
86 doc? (
87 dev-libs/libxslt
88 app-text/docbook-xml-dtd:4.2
89 )"
90
91 src_unpack() {
92 default
93 [[ $PV = 9999* ]] && git-2_src_unpack
94 }
95
96 src_configure() {
97 local mycmakeargs=(
98 -Dwaffle_has_glx=ON
99 -Dwaffle_build_examples=OFF
100 $(cmake-utils_use doc waffle_build_manpages)
101 $(cmake-utils_use egl waffle_has_x11_egl)
102 $(cmake-utils_use gbm waffle_has_gbm)
103 $(cmake-utils_use test waffle_build_tests)
104 $(cmake-utils_use wayland waffle_has_wayland)
105 )
106
107 cmake-multilib_src_configure
108 }
109
110 src_test() {
111 emake -C "${CMAKE_BUILD_DIR}" check
112 }