* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2012-02-10 17:12 Matt Turner
0 siblings, 0 replies; 15+ messages in thread
From: Matt Turner @ 2012-02-10 17:12 UTC (permalink / raw
To: gentoo-commits
commit: 7203cb5e162c530979a6bf63aab2438c474ba8cb
Author: Matt Turner <mattst88 <AT> gmail <DOT> com>
AuthorDate: Fri Feb 10 17:11:48 2012 +0000
Commit: Matt Turner <mattst88 <AT> gmail <DOT> com>
CommitDate: Fri Feb 10 17:11:48 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=7203cb5e
dev-libs/wayland: add ebuild support for non-9999 versions
---
dev-libs/wayland/wayland-9999.ebuild | 21 ++++++++++++++++++---
1 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index 7e72275..c3edd13 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -4,11 +4,24 @@
EAPI=4
-inherit git autotools toolchain-funcs
+EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-2"
+ EXPERIMENTAL="true"
+fi
+
+inherit autotools toolchain-funcs $GIT_ECLASS
DESCRIPTION="Wayland protocol libraries"
HOMEPAGE="http://wayland.freedesktop.org/"
-EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
+
+if [[ $PV = 9999* ]]; then
+ SRC_URI="${SRC_PATCHES}"
+else
+ SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
+fi
+
LICENSE="CCPL-Attribution-ShareAlike-3.0 MIT"
SLOT="0"
@@ -20,7 +33,9 @@ RDEPEND="dev-libs/expat
DEPEND="${RDEPEND}"
src_prepare() {
- eautoreconf
+ if [[ ${PV} = 9999* ]]; then
+ eautoreconf
+ fi
}
src_configure() {
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2012-02-10 17:16 Matt Turner
0 siblings, 0 replies; 15+ messages in thread
From: Matt Turner @ 2012-02-10 17:16 UTC (permalink / raw
To: gentoo-commits
commit: c28c2bd4bb31af192b86b13b3f28a4cf3b7d9b17
Author: Matt Turner <mattst88 <AT> gmail <DOT> com>
AuthorDate: Fri Feb 10 17:16:24 2012 +0000
Commit: Matt Turner <mattst88 <AT> gmail <DOT> com>
CommitDate: Fri Feb 10 17:16:24 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=c28c2bd4
dev-libs/wayland: remove extra line
---
dev-libs/wayland/wayland-9999.ebuild | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index c3edd13..1932460 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -22,7 +22,6 @@ else
SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
fi
-
LICENSE="CCPL-Attribution-ShareAlike-3.0 MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2012-11-12 15:23 David Heidelberger
0 siblings, 0 replies; 15+ messages in thread
From: David Heidelberger @ 2012-11-12 15:23 UTC (permalink / raw
To: gentoo-commits
commit: 516cbf7b7986e54b38f8e0ce6da8bad987cbc229
Author: David Heidelberger <d.okias <AT> gmail <DOT> com>
AuthorDate: Mon Nov 12 15:21:36 2012 +0000
Commit: David Heidelberger <d.okias <AT> gmail <DOT> com>
CommitDate: Mon Nov 12 15:21:36 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=516cbf7b
[dev-libs/wayland-9999] add doc USE flag
---
dev-libs/wayland/wayland-9999.ebuild | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index c4592d0..849654c 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -25,11 +25,12 @@ fi
LICENSE="CCPL-Attribution-ShareAlike-3.0 MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
-IUSE="static-libs"
+IUSE="doc static-libs"
RDEPEND="dev-libs/expat
dev-libs/libffi"
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+ doc? ( app-doc/doxygen )"
src_prepare() {
if [[ ${PV} = 9999* ]]; then
@@ -38,9 +39,10 @@ src_prepare() {
}
src_configure() {
+ myconf="$(use_enable static-libs static) \
+ $(use_enable doc documentation)"
if tc-is-cross-compiler ; then
- econf $(use_enable static-libs static) --disable-scanner
- else
- econf $(use_enable static-libs static)
+ myconf+=" --disable-scanner"
fi
+ econf ${myconf}
}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2013-01-21 17:48 Matt Turner
0 siblings, 0 replies; 15+ messages in thread
From: Matt Turner @ 2013-01-21 17:48 UTC (permalink / raw
To: gentoo-commits
commit: aea40ed35185b8d42628894366e0cd456fdc860d
Author: Matt Turner <mattst88 <AT> gmail <DOT> com>
AuthorDate: Mon Jan 21 17:47:11 2013 +0000
Commit: Matt Turner <mattst88 <AT> gmail <DOT> com>
CommitDate: Mon Jan 21 17:49:56 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=aea40ed3
dev-libs/wayland: Use virtual/libffi
---
dev-libs/wayland/wayland-9999.ebuild | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index 849654c..571d20f 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -28,7 +28,7 @@ KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
IUSE="doc static-libs"
RDEPEND="dev-libs/expat
- dev-libs/libffi"
+ virtual/libffi"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2013-06-09 12:23 David Heidelberger
0 siblings, 0 replies; 15+ messages in thread
From: David Heidelberger @ 2013-06-09 12:23 UTC (permalink / raw
To: gentoo-commits
commit: af6390c227f4a092fe22dfa6f430d1a5773943bc
Author: David Heidelberger <david.heidelberger <AT> ixit <DOT> cz>
AuthorDate: Sun Jun 9 12:23:10 2013 +0000
Commit: David Heidelberger <d.okias <AT> gmail <DOT> com>
CommitDate: Sun Jun 9 12:23:10 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=af6390c2
dev-libs/wayland: fix keywords for 9999
Package-Manager: portage-2.1.12.3
---
dev-libs/wayland/wayland-9999.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index c47d2a6..3e5e9c2 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -4,9 +4,8 @@
EAPI=5
-EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
-
if [[ ${PV} = 9999* ]]; then
+ EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
GIT_ECLASS="git-2"
EXPERIMENTAL="true"
fi
@@ -18,13 +17,14 @@ HOMEPAGE="http://wayland.freedesktop.org/"
if [[ $PV = 9999* ]]; then
SRC_URI="${SRC_PATCHES}"
+ KEYWORDS=""
else
SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
IUSE="doc static-libs"
RDEPEND="dev-libs/expat
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2013-07-13 14:36 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 15+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2013-07-13 14:36 UTC (permalink / raw
To: gentoo-commits
commit: 361b14842a6b59b1296bdb98508220740b489704
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 13 14:36:41 2013 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Sat Jul 13 14:36:41 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=361b1484
dev-libs/wayland: sync keywords with portage
---
dev-libs/wayland/wayland-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index 3e5e9c2..3e70a82 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -20,7 +20,7 @@ if [[ $PV = 9999* ]]; then
KEYWORDS=""
else
SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+ KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
fi
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2013-07-16 10:26 Nikoli
0 siblings, 0 replies; 15+ messages in thread
From: Nikoli @ 2013-07-16 10:26 UTC (permalink / raw
To: gentoo-commits
commit: 1d8efcec0571e50a0831c1cb8e13ca1485d5fd46
Author: Nikoli <nikoli <AT> lavabit <DOT> com>
AuthorDate: Tue Jul 16 10:25:06 2013 +0000
Commit: Nikoli <nikoli <AT> lavabit <DOT> com>
CommitDate: Tue Jul 16 10:25:06 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=1d8efcec
dev-libs/wayland: fix tests, add missing pkgconfig dep, rm .la, cosmetics
Package-Manager: portage-2.1.12.2
---
dev-libs/wayland/wayland-9999.ebuild | 57 ++++++++++++++++++------------------
1 file changed, 29 insertions(+), 28 deletions(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index 3e70a82..86a5909 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -3,46 +3,47 @@
# $Header: $
EAPI=5
+AUTOTOOLS_AUTORECONF=1
+AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
+EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
-if [[ ${PV} = 9999* ]]; then
- EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
- GIT_ECLASS="git-2"
- EXPERIMENTAL="true"
-fi
-
-inherit autotools toolchain-funcs $GIT_ECLASS
+inherit autotools-utils toolchain-funcs
+[[ ${PV} == *9999* ]] && inherit git-2
DESCRIPTION="Wayland protocol libraries"
HOMEPAGE="http://wayland.freedesktop.org/"
-
-if [[ $PV = 9999* ]]; then
- SRC_URI="${SRC_PATCHES}"
- KEYWORDS=""
-else
- SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
-fi
+[[ ${PV} == *9999* ]] || \
+SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
LICENSE="MIT"
SLOT="0"
+[[ ${PV} == *9999* ]] || \
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
IUSE="doc static-libs"
-RDEPEND="dev-libs/expat
- virtual/libffi"
+RDEPEND="
+ dev-libs/expat
+ virtual/libffi
+"
DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-src_prepare() {
- if [[ ${PV} = 9999* ]]; then
- eautoreconf
- fi
-}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+"
src_configure() {
- myconf="$(use_enable static-libs static) \
- $(use_enable doc documentation)"
+ local myeconfargs=(
+ $(use_enable doc documentation)
+ )
if tc-is-cross-compiler ; then
- myconf+=" --disable-scanner"
+ myeconfargs+=( --disable-scanner )
fi
- econf ${myconf}
+ autotools-utils_src_configure
+}
+
+src_test() {
+ export XDG_RUNTIME_DIR="${T}/runtime-dir"
+ mkdir "${XDG_RUNTIME_DIR}" || die
+ chmod 0700 "${XDG_RUNTIME_DIR}" || die
+
+ autotools-utils_src_test
}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2013-07-16 11:21 Nikoli
0 siblings, 0 replies; 15+ messages in thread
From: Nikoli @ 2013-07-16 11:21 UTC (permalink / raw
To: gentoo-commits
commit: 70f27509f8c27ec9c1642f4162246090b6169cc4
Author: Nikoli <nikoli <AT> lavabit <DOT> com>
AuthorDate: Tue Jul 16 11:12:44 2013 +0000
Commit: Nikoli <nikoli <AT> lavabit <DOT> com>
CommitDate: Tue Jul 16 11:12:44 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=70f27509
dev-libs/wayland: do not support live ebuilds for branches
Package-Manager: portage-2.1.12.2
---
dev-libs/wayland/wayland-9999.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index 86a5909..efce00d 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -8,16 +8,16 @@ AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
inherit autotools-utils toolchain-funcs
-[[ ${PV} == *9999* ]] && inherit git-2
+[[ ${PV} == 9999* ]] && inherit git-2
DESCRIPTION="Wayland protocol libraries"
HOMEPAGE="http://wayland.freedesktop.org/"
-[[ ${PV} == *9999* ]] || \
+[[ ${PV} == 9999* ]] || \
SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
LICENSE="MIT"
SLOT="0"
-[[ ${PV} == *9999* ]] || \
+[[ ${PV} == 9999* ]] || \
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
IUSE="doc static-libs"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2013-07-17 16:42 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 15+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2013-07-17 16:42 UTC (permalink / raw
To: gentoo-commits
commit: 3da9d5d686517074bbcdc9fb79b3a2c217ed16f0
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 16:41:22 2013 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Wed Jul 17 16:41:22 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=3da9d5d6
dev-libs/wayland: sync ebuild with g-x86
Change control operators back to if clauses.
Revert eclass changes.
---
dev-libs/wayland/wayland-9999.ebuild | 50 +++++++++++++++++++++---------------
1 file changed, 29 insertions(+), 21 deletions(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index efce00d..20e4b89 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -3,41 +3,49 @@
# $Header: $
EAPI=5
-AUTOTOOLS_AUTORECONF=1
-AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
-EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
-inherit autotools-utils toolchain-funcs
-[[ ${PV} == 9999* ]] && inherit git-2
+if [[ ${PV} = 9999* ]]; then
+ EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
+ GIT_ECLASS="git-2"
+ EXPERIMENTAL="true"
+fi
+
+inherit autotools toolchain-funcs $GIT_ECLASS
DESCRIPTION="Wayland protocol libraries"
HOMEPAGE="http://wayland.freedesktop.org/"
-[[ ${PV} == 9999* ]] || \
-SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
+
+if [[ $PV = 9999* ]]; then
+ SRC_URI="${SRC_PATCHES}"
+ KEYWORDS=""
+else
+ SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+fi
LICENSE="MIT"
SLOT="0"
-[[ ${PV} == 9999* ]] || \
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
IUSE="doc static-libs"
-RDEPEND="
- dev-libs/expat
- virtual/libffi
-"
+RDEPEND="dev-libs/expat
+ virtual/libffi"
DEPEND="${RDEPEND}
- virtual/pkgconfig
doc? ( app-doc/doxygen )
-"
+ virtual/pkgconfig"
+
+src_prepare() {
+ if [[ ${PV} = 9999* ]]; then
+ eautoreconf
+ fi
+}
src_configure() {
- local myeconfargs=(
- $(use_enable doc documentation)
- )
+ myconf="$(use_enable static-libs static) \
+ $(use_enable doc documentation)"
if tc-is-cross-compiler ; then
- myeconfargs+=( --disable-scanner )
+ myconf+=" --disable-scanner"
fi
- autotools-utils_src_configure
+ econf ${myconf}
}
src_test() {
@@ -45,5 +53,5 @@ src_test() {
mkdir "${XDG_RUNTIME_DIR}" || die
chmod 0700 "${XDG_RUNTIME_DIR}" || die
- autotools-utils_src_test
+ default
}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2013-11-17 2:36 David Heidelberger
0 siblings, 0 replies; 15+ messages in thread
From: David Heidelberger @ 2013-11-17 2:36 UTC (permalink / raw
To: gentoo-commits
commit: 8df0bf1766b652a1be3a87dcac56b172507690df
Author: David Heidelberger <david.heidelberger <AT> ixit <DOT> cz>
AuthorDate: Sun Nov 17 02:36:01 2013 +0000
Commit: David Heidelberger <d.okias <AT> gmail <DOT> com>
CommitDate: Sun Nov 17 02:36:01 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=8df0bf17
dev-libs/wayland-1.3.0: bump
---
dev-libs/wayland/wayland-1.3.0.ebuild | 57 +++++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
diff --git a/dev-libs/wayland/wayland-1.3.0.ebuild b/dev-libs/wayland/wayland-1.3.0.ebuild
new file mode 100644
index 0000000..da4f37c
--- /dev/null
+++ b/dev-libs/wayland/wayland-1.3.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+if [[ ${PV} = 9999* ]]; then
+ EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
+ GIT_ECLASS="git-2"
+ EXPERIMENTAL="true"
+ AUTOTOOLS_AUTORECONF=1
+fi
+
+inherit autotools-multilib toolchain-funcs $GIT_ECLASS
+
+DESCRIPTION="Wayland protocol libraries"
+HOMEPAGE="http://wayland.freedesktop.org/"
+
+if [[ $PV = 9999* ]]; then
+ SRC_URI="${SRC_PATCHES}"
+ KEYWORDS=""
+else
+ SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="doc static-libs"
+
+RDEPEND="dev-libs/expat
+ virtual/libffi"
+DEPEND="${RDEPEND}
+ doc? ( app-doc/doxygen )
+ virtual/pkgconfig"
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable doc documentation)
+ )
+ if tc-is-cross-compiler ; then
+ myeconfargs+=( --disable-scanner )
+ fi
+ if ! multilib_is_native_abi; then
+ myeconfargs+=( --disable-documentation )
+ fi
+
+ autotools-multilib_src_configure
+}
+
+src_test() {
+ export XDG_RUNTIME_DIR="${T}/runtime-dir"
+ mkdir "${XDG_RUNTIME_DIR}" || die
+ chmod 0700 "${XDG_RUNTIME_DIR}" || die
+
+ autotools-multilib_src_test
+}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2013-12-20 13:50 David Heidelberger
0 siblings, 0 replies; 15+ messages in thread
From: David Heidelberger @ 2013-12-20 13:50 UTC (permalink / raw
To: gentoo-commits
commit: 0fa75b353c897ccb3be7f0ccf65108cb6fb2a58b
Author: David Heidelberger <david.heidelberger <AT> ixit <DOT> cz>
AuthorDate: Fri Dec 20 13:50:19 2013 +0000
Commit: David Heidelberger <d.okias <AT> gmail <DOT> com>
CommitDate: Fri Dec 20 13:50:19 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=0fa75b35
dev-libs/wayland: bump 1.3.91, switch to git-r3
Package-Manager: portage-2.2.7
---
dev-libs/wayland/wayland-1.3.0.ebuild | 2 +-
dev-libs/wayland/{wayland-1.3.0.ebuild => wayland-1.3.91.ebuild} | 2 +-
dev-libs/wayland/wayland-9999.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-libs/wayland/wayland-1.3.0.ebuild b/dev-libs/wayland/wayland-1.3.0.ebuild
index da4f37c..dfaea74 100644
--- a/dev-libs/wayland/wayland-1.3.0.ebuild
+++ b/dev-libs/wayland/wayland-1.3.0.ebuild
@@ -6,7 +6,7 @@ EAPI=5
if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
- GIT_ECLASS="git-2"
+ GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
AUTOTOOLS_AUTORECONF=1
fi
diff --git a/dev-libs/wayland/wayland-1.3.0.ebuild b/dev-libs/wayland/wayland-1.3.91.ebuild
similarity index 98%
copy from dev-libs/wayland/wayland-1.3.0.ebuild
copy to dev-libs/wayland/wayland-1.3.91.ebuild
index da4f37c..dfaea74 100644
--- a/dev-libs/wayland/wayland-1.3.0.ebuild
+++ b/dev-libs/wayland/wayland-1.3.91.ebuild
@@ -6,7 +6,7 @@ EAPI=5
if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
- GIT_ECLASS="git-2"
+ GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
AUTOTOOLS_AUTORECONF=1
fi
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index 099c4b8..17cbab2 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -6,7 +6,7 @@ EAPI=5
if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
- GIT_ECLASS="git-2"
+ GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
AUTOTOOLS_AUTORECONF=1
fi
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2014-01-23 19:40 Matt Turner
0 siblings, 0 replies; 15+ messages in thread
From: Matt Turner @ 2014-01-23 19:40 UTC (permalink / raw
To: gentoo-commits
commit: d347f4a1fbc9b908bfd430914c7891de0d5cf54f
Author: Matt Turner <mattst88 <AT> gmail <DOT> com>
AuthorDate: Mon Jan 20 01:28:57 2014 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Jan 23 19:41:28 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=d347f4a1
dev-libs/wayland: 1.3.0 moved to tree.
---
dev-libs/wayland/wayland-1.3.0.ebuild | 57 -----------------------------------
1 file changed, 57 deletions(-)
diff --git a/dev-libs/wayland/wayland-1.3.0.ebuild b/dev-libs/wayland/wayland-1.3.0.ebuild
deleted file mode 100644
index cb0c1dd..0000000
--- a/dev-libs/wayland/wayland-1.3.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-if [[ ${PV} = 9999* ]]; then
- EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
- GIT_ECLASS="git-r3"
- EXPERIMENTAL="true"
- AUTOTOOLS_AUTORECONF=1
-fi
-
-inherit autotools-multilib toolchain-funcs $GIT_ECLASS
-
-DESCRIPTION="Wayland protocol libraries"
-HOMEPAGE="http://wayland.freedesktop.org/"
-
-if [[ $PV = 9999* ]]; then
- SRC_URI="${SRC_PATCHES}"
- KEYWORDS=""
-else
- SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="doc static-libs"
-
-RDEPEND="dev-libs/expat[${MULTILIB_USEDEP}]
- virtual/libffi[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- virtual/pkgconfig"
-
-src_configure() {
- local myeconfargs=(
- $(use_enable doc documentation)
- )
- if tc-is-cross-compiler ; then
- myeconfargs+=( --disable-scanner )
- fi
- if ! multilib_is_native_abi; then
- myeconfargs+=( --disable-documentation )
- fi
-
- autotools-multilib_src_configure
-}
-
-src_test() {
- export XDG_RUNTIME_DIR="${T}/runtime-dir"
- mkdir "${XDG_RUNTIME_DIR}" || die
- chmod 0700 "${XDG_RUNTIME_DIR}" || die
-
- autotools-multilib_src_test
-}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2014-01-24 20:18 Matt Turner
0 siblings, 0 replies; 15+ messages in thread
From: Matt Turner @ 2014-01-24 20:18 UTC (permalink / raw
To: gentoo-commits
commit: 486a4353117696d5c3a0756fc2ddc5c883c20d31
Author: Matt Turner <mattst88 <AT> gmail <DOT> com>
AuthorDate: Fri Jan 24 20:18:08 2014 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jan 24 20:18:44 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=486a4353
dev-libs/wayland: Remove 1.3.91. (1.4.0 is in portage).
---
dev-libs/wayland/wayland-1.3.91.ebuild | 57 ----------------------------------
1 file changed, 57 deletions(-)
diff --git a/dev-libs/wayland/wayland-1.3.91.ebuild b/dev-libs/wayland/wayland-1.3.91.ebuild
deleted file mode 100644
index cb0c1dd..0000000
--- a/dev-libs/wayland/wayland-1.3.91.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-if [[ ${PV} = 9999* ]]; then
- EGIT_REPO_URI="git://anongit.freedesktop.org/git/${PN}/${PN}"
- GIT_ECLASS="git-r3"
- EXPERIMENTAL="true"
- AUTOTOOLS_AUTORECONF=1
-fi
-
-inherit autotools-multilib toolchain-funcs $GIT_ECLASS
-
-DESCRIPTION="Wayland protocol libraries"
-HOMEPAGE="http://wayland.freedesktop.org/"
-
-if [[ $PV = 9999* ]]; then
- SRC_URI="${SRC_PATCHES}"
- KEYWORDS=""
-else
- SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="doc static-libs"
-
-RDEPEND="dev-libs/expat[${MULTILIB_USEDEP}]
- virtual/libffi[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- virtual/pkgconfig"
-
-src_configure() {
- local myeconfargs=(
- $(use_enable doc documentation)
- )
- if tc-is-cross-compiler ; then
- myeconfargs+=( --disable-scanner )
- fi
- if ! multilib_is_native_abi; then
- myeconfargs+=( --disable-documentation )
- fi
-
- autotools-multilib_src_configure
-}
-
-src_test() {
- export XDG_RUNTIME_DIR="${T}/runtime-dir"
- mkdir "${XDG_RUNTIME_DIR}" || die
- chmod 0700 "${XDG_RUNTIME_DIR}" || die
-
- autotools-multilib_src_test
-}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2014-05-21 16:42 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 15+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2014-05-21 16:42 UTC (permalink / raw
To: gentoo-commits
commit: 742481cda4badf60682387fe40d759abfa024cfc
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Wed May 21 16:42:18 2014 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Wed May 21 16:42:18 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=742481cd
dev-libs/wayland: sync ebuild with portage
---
dev-libs/wayland/wayland-9999.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index 09f1854..e420916 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -18,14 +18,13 @@ HOMEPAGE="http://wayland.freedesktop.org/"
if [[ $PV = 9999* ]]; then
SRC_URI="${SRC_PATCHES}"
- KEYWORDS=""
else
SRC_URI="http://wayland.freedesktop.org/releases/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
IUSE="doc static-libs"
RDEPEND="dev-libs/expat[${MULTILIB_USEDEP}]
@@ -42,6 +41,9 @@ src_configure() {
if tc-is-cross-compiler ; then
myeconfargs+=( --disable-scanner )
fi
+ if ! multilib_is_native_abi; then
+ myeconfargs+=( --disable-documentation )
+ fi
autotools-multilib_src_configure
}
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/
@ 2015-02-22 18:34 Matt Turner
0 siblings, 0 replies; 15+ messages in thread
From: Matt Turner @ 2015-02-22 18:34 UTC (permalink / raw
To: gentoo-commits
commit: 65e5bc983701e1db5b58ddf65227ae7e0a8a1835
Author: Matt Turner <mattst88 <AT> gmail <DOT> com>
AuthorDate: Sun Feb 22 18:33:27 2015 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Feb 22 18:33:27 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=65e5bc98
dev-libs/wayland: Update dependencies for USE=doc.
Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=540966
---
dev-libs/wayland/wayland-9999.ebuild | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild
index 7db51ae..40742ba 100644
--- a/dev-libs/wayland/wayland-9999.ebuild
+++ b/dev-libs/wayland/wayland-9999.ebuild
@@ -30,7 +30,12 @@ IUSE="doc static-libs"
RDEPEND=">=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
>=virtual/libffi-3.0.13-r1:=[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
+ doc? (
+ >=app-doc/doxygen-1.6[dot]
+ app-text/xmlto
+ >=media-gfx/graphviz-2.26.0
+ sys-apps/grep[pcre]
+ )
virtual/pkgconfig"
src_configure() {
^ permalink raw reply related [flat|nested] 15+ messages in thread
end of thread, other threads:[~2015-02-22 18:34 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-10 17:12 [gentoo-commits] proj/x11:master commit in: dev-libs/wayland/ Matt Turner
-- strict thread matches above, loose matches on Subject: below --
2012-02-10 17:16 Matt Turner
2012-11-12 15:23 David Heidelberger
2013-01-21 17:48 Matt Turner
2013-06-09 12:23 David Heidelberger
2013-07-13 14:36 Chi-Thanh Christopher Nguyen
2013-07-16 10:26 Nikoli
2013-07-16 11:21 Nikoli
2013-07-17 16:42 Chi-Thanh Christopher Nguyen
2013-11-17 2:36 David Heidelberger
2013-12-20 13:50 David Heidelberger
2014-01-23 19:40 Matt Turner
2014-01-24 20:18 Matt Turner
2014-05-21 16:42 Chi-Thanh Christopher Nguyen
2015-02-22 18:34 Matt Turner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox