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.6.0.ebuild ChangeLog
Date: Fri, 26 Sep 2014 20:39:34
Message-Id: 20140926203931.4F625659D@oystercatcher.gentoo.org
1 mattst88 14/09/26 20:39:31
2
3 Modified: ChangeLog
4 Added: wayland-1.6.0.ebuild
5 Log:
6 Version bump to 1.6.0.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
9
10 Revision Changes Path
11 1.48 dev-libs/wayland/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/ChangeLog?rev=1.48&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/ChangeLog?rev=1.48&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/ChangeLog?r1=1.47&r2=1.48
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/wayland/ChangeLog,v
20 retrieving revision 1.47
21 retrieving revision 1.48
22 diff -u -r1.47 -r1.48
23 --- ChangeLog 13 Aug 2014 17:16:56 -0000 1.47
24 +++ ChangeLog 26 Sep 2014 20:39:31 -0000 1.48
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/wayland
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/wayland/ChangeLog,v 1.47 2014/08/13 17:16:56 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/wayland/ChangeLog,v 1.48 2014/09/26 20:39:31 mattst88 Exp $
30 +
31 +*wayland-1.6.0 (26 Sep 2014)
32 +
33 + 26 Sep 2014; Matt Turner <mattst88@g.o> +wayland-1.6.0.ebuild:
34 + Version bump to 1.6.0.
35
36 13 Aug 2014; Raúl Porcel <armin76@g.o> wayland-1.4.0.ebuild,
37 wayland-1.5.0.ebuild:
38
39
40
41 1.1 dev-libs/wayland/wayland-1.6.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/wayland-1.6.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/wayland-1.6.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wayland-1.6.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.6.0.ebuild,v 1.1 2014/09/26 20:39:31 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 else
69 SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
70 fi
71
72 LICENSE="MIT"
73 SLOT="0"
74 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
75 IUSE="doc static-libs"
76
77 RDEPEND=">=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
78 >=virtual/libffi-3.0.13-r1:=[${MULTILIB_USEDEP}]"
79 DEPEND="${RDEPEND}
80 doc? ( app-doc/doxygen )
81 virtual/pkgconfig"
82
83 src_configure() {
84 local myeconfargs=(
85 $(use_enable static-libs static)
86 $(use_enable doc documentation)
87 )
88 if tc-is-cross-compiler ; then
89 myeconfargs+=( --disable-scanner )
90 fi
91 if ! multilib_is_native_abi; then
92 myeconfargs+=( --disable-documentation )
93 fi
94
95 autotools-multilib_src_configure
96 }
97
98 src_test() {
99 export XDG_RUNTIME_DIR="${T}/runtime-dir"
100 mkdir "${XDG_RUNTIME_DIR}" || die
101 chmod 0700 "${XDG_RUNTIME_DIR}" || die
102
103 autotools-multilib_src_test
104 }