Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
Date: Fri, 24 Jan 2014 20:18:55
Message-Id: 1390594724.486a4353117696d5c3a0756fc2ddc5c883c20d31.mattst88@gentoo
1 commit: 486a4353117696d5c3a0756fc2ddc5c883c20d31
2 Author: Matt Turner <mattst88 <AT> gmail <DOT> com>
3 AuthorDate: Fri Jan 24 20:18:08 2014 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 24 20:18:44 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=486a4353
7
8 dev-libs/wayland: Remove 1.3.91. (1.4.0 is in portage).
9
10 ---
11 dev-libs/wayland/wayland-1.3.91.ebuild | 57 ----------------------------------
12 1 file changed, 57 deletions(-)
13
14 diff --git a/dev-libs/wayland/wayland-1.3.91.ebuild b/dev-libs/wayland/wayland-1.3.91.ebuild
15 deleted file mode 100644
16 index cb0c1dd..0000000
17 --- a/dev-libs/wayland/wayland-1.3.91.ebuild
18 +++ /dev/null
19 @@ -1,57 +0,0 @@
20 -# Copyright 1999-2014 Gentoo Foundation
21 -# Distributed under the terms of the GNU General Public License v2
22 -# $Header: $
23 -
24 -EAPI=5
25 -
26 -if [[ ${PV} = 9999* ]]; then
27 - EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
28 - GIT_ECLASS="git-r3"
29 - EXPERIMENTAL="true"
30 - AUTOTOOLS_AUTORECONF=1
31 -fi
32 -
33 -inherit autotools-multilib toolchain-funcs $GIT_ECLASS
34 -
35 -DESCRIPTION="Wayland protocol libraries"
36 -HOMEPAGE="http://wayland.freedesktop.org/"
37 -
38 -if [[ $PV = 9999* ]]; then
39 - SRC_URI="${SRC_PATCHES}"
40 - KEYWORDS=""
41 -else
42 - SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
43 - KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
44 -fi
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -IUSE="doc static-libs"
49 -
50 -RDEPEND="dev-libs/expat[${MULTILIB_USEDEP}]
51 - virtual/libffi[${MULTILIB_USEDEP}]"
52 -DEPEND="${RDEPEND}
53 - doc? ( app-doc/doxygen )
54 - virtual/pkgconfig"
55 -
56 -src_configure() {
57 - local myeconfargs=(
58 - $(use_enable doc documentation)
59 - )
60 - if tc-is-cross-compiler ; then
61 - myeconfargs+=( --disable-scanner )
62 - fi
63 - if ! multilib_is_native_abi; then
64 - myeconfargs+=( --disable-documentation )
65 - fi
66 -
67 - autotools-multilib_src_configure
68 -}
69 -
70 -src_test() {
71 - export XDG_RUNTIME_DIR="${T}/runtime-dir"
72 - mkdir "${XDG_RUNTIME_DIR}" || die
73 - chmod 0700 "${XDG_RUNTIME_DIR}" || die
74 -
75 - autotools-multilib_src_test
76 -}