Gentoo Archives: gentoo-commits

From: "Matt Turner (mattst88)" <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/wayland: wayland-1.3.0.ebuild ChangeLog
Date: Tue, 31 Dec 2013 18:23:56
Message-Id: 20131231182349.B9C972004C@flycatcher.gentoo.org
1 mattst88 13/12/31 18:23:49
2
3 Modified: ChangeLog
4 Added: wayland-1.3.0.ebuild
5 Log:
6 Version bump to 1.3.0, bug 494900.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
9
10 Revision Changes Path
11 1.32 dev-libs/wayland/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/wayland/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 31 Dec 2013 18:11:14 -0000 1.31
24 +++ ChangeLog 31 Dec 2013 18:23:49 -0000 1.32
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/wayland
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/wayland/ChangeLog,v 1.31 2013/12/31 18:11:14 mattst88 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/wayland/ChangeLog,v 1.32 2013/12/31 18:23:49 mattst88 Exp $
30 +
31 +*wayland-1.3.0 (31 Dec 2013)
32 +
33 + 31 Dec 2013; Matt Turner <mattst88@g.o> +wayland-1.3.0.ebuild:
34 + Version bump to 1.3.0, bug 494900.
35
36 31 Dec 2013; Matt Turner <mattst88@g.o> wayland-1.2.1-r1.ebuild:
37 Add missing MULTILIB_USEDEP to dependencies.
38
39
40
41 1.1 dev-libs/wayland/wayland-1.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/wayland-1.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/wayland-1.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wayland-1.3.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/wayland/wayland-1.3.0.ebuild,v 1.1 2013/12/31 18:23:49 mattst88 Exp $
51
52 EAPI=5
53
54 if [[ ${PV} = 9999* ]]; then
55 EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
56 GIT_ECLASS="git-r3"
57 EXPERIMENTAL="true"
58 AUTOTOOLS_AUTORECONF=1
59 fi
60
61 inherit autotools-multilib toolchain-funcs $GIT_ECLASS
62
63 DESCRIPTION="Wayland protocol libraries"
64 HOMEPAGE="http://wayland.freedesktop.org/"
65
66 if [[ $PV = 9999* ]]; then
67 SRC_URI="${SRC_PATCHES}"
68 KEYWORDS=""
69 else
70 SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
71 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
72 fi
73
74 LICENSE="MIT"
75 SLOT="0"
76 IUSE="doc static-libs"
77
78 RDEPEND="dev-libs/expat[${MULTILIB_USEDEP}]
79 virtual/libffi[${MULTILIB_USEDEP}]"
80 DEPEND="${RDEPEND}
81 doc? ( app-doc/doxygen )
82 virtual/pkgconfig"
83
84 src_prepare() {
85 # Remove resources-test from TESTS as it has failed since it was added.
86 sed -i -e 's/ resources-test$(EXEEXT)/ $(NULL)/' ${S}/tests/Makefile.in || die
87
88 autotools-multilib_src_prepare
89 }
90
91 src_configure() {
92 local myeconfargs=(
93 $(use_enable doc documentation)
94 )
95 if tc-is-cross-compiler ; then
96 myeconfargs+=( --disable-scanner )
97 fi
98 if ! multilib_build_binaries; then
99 myeconfargs+=( --disable-documentation )
100 fi
101
102 autotools-multilib_src_configure
103 }
104
105 src_test() {
106 export XDG_RUNTIME_DIR="${T}/runtime-dir"
107 mkdir "${XDG_RUNTIME_DIR}" || die
108 chmod 0700 "${XDG_RUNTIME_DIR}" || die
109
110 autotools-multilib_src_test
111 }