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