Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/wayland: wayland-1.5.0.ebuild ChangeLog
Date: Wed, 21 May 2014 15:52:03
Message-Id: 20140521155159.EAD8A2004C@flycatcher.gentoo.org
1 chithanh 14/05/21 15:51:59
2
3 Modified: ChangeLog
4 Added: wayland-1.5.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.44 dev-libs/wayland/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/wayland/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 28 Apr 2014 17:43:33 -0000 1.43
24 +++ ChangeLog 21 May 2014 15:51:59 -0000 1.44
25 @@ -1,6 +1,12 @@
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.43 2014/04/28 17:43:33 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/wayland/ChangeLog,v 1.44 2014/05/21 15:51:59 chithanh Exp $
30 +
31 +*wayland-1.5.0 (21 May 2014)
32 +
33 + 21 May 2014; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +wayland-1.5.0.ebuild:
35 + Version bump.
36
37 28 Apr 2014; Michał Górny <mgorny@g.o> wayland-1.3.0.ebuild,
38 wayland-1.4.0.ebuild:
39
40
41
42 1.1 dev-libs/wayland/wayland-1.5.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/wayland-1.5.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/wayland/wayland-1.5.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: wayland-1.5.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.5.0.ebuild,v 1.1 2014/05/21 15:51:59 chithanh 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 else
70 SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
71 fi
72
73 LICENSE="MIT"
74 SLOT="0"
75 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
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_configure() {
85 local myeconfargs=(
86 $(use_enable static-libs static)
87 $(use_enable doc documentation)
88 )
89 if tc-is-cross-compiler ; then
90 myeconfargs+=( --disable-scanner )
91 fi
92 if ! multilib_is_native_abi; 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 }