* [gentoo-commits] proj/x11:master commit in: x11-libs/glamor/
@ 2012-02-27 9:21 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2012-02-27 9:21 UTC (permalink / raw
To: gentoo-commits
commit: e0000069fd683664793077461c296e5b8844643f
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 27 09:21:29 2012 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Mon Feb 27 09:21:29 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=e0000069
x11-libs/glamor: adjust USE dependencies to allow building against >=mesa-8
---
x11-libs/glamor/glamor-9999.ebuild | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/x11-libs/glamor/glamor-9999.ebuild b/x11-libs/glamor/glamor-9999.ebuild
index 3d8a0dc..ba3bfe6 100644
--- a/x11-libs/glamor/glamor-9999.ebuild
+++ b/x11-libs/glamor/glamor-9999.ebuild
@@ -10,7 +10,10 @@ KEYWORDS="~amd64 ~x86"
IUSE="gles"
RDEPEND=">=x11-base/xorg-server-1.10
- media-libs/mesa[egl,gles?]
+ media-libs/mesa[egl]
+ gles? (
+ || ( media-libs/mesa[gles2] media-libs/mesa[gles] )
+ )
>=x11-libs/pixman-0.21.8"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-libs/glamor/
@ 2012-05-07 21:20 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2012-05-07 21:20 UTC (permalink / raw
To: gentoo-commits
commit: 404507ea51eb53181c136f7e2d483558e2db1b7d
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Mon May 7 21:13:05 2012 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Mon May 7 21:13:05 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=404507ea
x11-libs/glamor: add mesa[gbm] dependency, import install location fix from portage.
---
x11-libs/glamor/glamor-9999.ebuild | 18 ++++++++++++++++--
1 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/x11-libs/glamor/glamor-9999.ebuild b/x11-libs/glamor/glamor-9999.ebuild
index ba3bfe6..5e60451 100644
--- a/x11-libs/glamor/glamor-9999.ebuild
+++ b/x11-libs/glamor/glamor-9999.ebuild
@@ -1,16 +1,25 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
EAPI=4
XORG_DRI=always
+XORG_EAUTORECONF=yes
inherit xorg-2
-EGIT_REPO_URI="git://anongit.freedesktop.org/xorg/driver/glamor"
DESCRIPTION="OpenGL based 2D rendering acceleration library"
+if [[ ${PV} == 9999* ]]; then
+ EGIT_REPO_URI="git://anongit.freedesktop.org/xorg/driver/glamor"
+else
+ SRC_URI="mirror://gentoo/${P}.tar.gz"
+fi
KEYWORDS="~amd64 ~x86"
IUSE="gles"
RDEPEND=">=x11-base/xorg-server-1.10
- media-libs/mesa[egl]
+ media-libs/mesa[egl,gbm]
gles? (
|| ( media-libs/mesa[gles2] media-libs/mesa[gles] )
)
@@ -23,3 +32,8 @@ pkg_setup() {
$(use_enable gles glamor-gles2)
)
}
+
+src_prepare() {
+ sed -i 's/inst_LTLIBRARIES/lib_LTLIBRARIES/' src/Makefile.am || die
+ xorg-2_src_prepare
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-libs/glamor/
@ 2013-03-29 17:56 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2013-03-29 17:56 UTC (permalink / raw
To: gentoo-commits
commit: 23e76971710ca02990e40eaf80beffc53ea27cd8
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 29 17:57:01 2013 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Fri Mar 29 17:57:01 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=23e76971
x11-libs/glamor: No longer needs Makefile patching
---
x11-libs/glamor/glamor-9999.ebuild | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/x11-libs/glamor/glamor-9999.ebuild b/x11-libs/glamor/glamor-9999.ebuild
index b3841b8..44b3721 100644
--- a/x11-libs/glamor/glamor-9999.ebuild
+++ b/x11-libs/glamor/glamor-9999.ebuild
@@ -6,6 +6,8 @@ EAPI=5
XORG_DRI=always
XORG_EAUTORECONF=yes
+XORG_MODULE_REBUILD=yes
+
inherit xorg-2
DESCRIPTION="OpenGL based 2D rendering acceleration library"
@@ -32,8 +34,3 @@ src_configure() {
)
xorg-2_src_configure
}
-
-src_prepare() {
- sed -i 's/inst_LTLIBRARIES/lib_LTLIBRARIES/' src/Makefile.am || die
- xorg-2_src_prepare
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-libs/glamor/
@ 2013-05-16 11:52 David Heidelberger
0 siblings, 0 replies; 6+ messages in thread
From: David Heidelberger @ 2013-05-16 11:52 UTC (permalink / raw
To: gentoo-commits
commit: ad4dd9df163a200df2d709a62ab384955c2add55
Author: David Heidelberger <david.heidelberger <AT> ixit <DOT> cz>
AuthorDate: Thu May 16 11:51:52 2013 +0000
Commit: David Heidelberger <d.okias <AT> gmail <DOT> com>
CommitDate: Thu May 16 11:51:52 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=ad4dd9df
x11-libs/glamor: fix ebuild QA
Package-Manager: portage-2.2.0_alpha174
---
x11-libs/glamor/metadata.xml | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/x11-libs/glamor/metadata.xml b/x11-libs/glamor/metadata.xml
new file mode 100644
index 0000000..e446e1d
--- /dev/null
+++ b/x11-libs/glamor/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>x11</herd>
+<use>
+ <flag name="gles">Build with GLES support</flag>
+</use>
+</pkgmetadata>
+
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-libs/glamor/
@ 2014-01-26 17:33 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2014-01-26 17:33 UTC (permalink / raw
To: gentoo-commits
commit: 921a12619212b039b5fc9f778525c91abbe3df9f
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 26 17:33:18 2014 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Sun Jan 26 17:33:18 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=921a1261
x11-libs/glamor: make xv optional.
---
x11-libs/glamor/glamor-9999.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/x11-libs/glamor/glamor-9999.ebuild b/x11-libs/glamor/glamor-9999.ebuild
index e5cfbaa..a6bc4ec 100644
--- a/x11-libs/glamor/glamor-9999.ebuild
+++ b/x11-libs/glamor/glamor-9999.ebuild
@@ -18,7 +18,7 @@ else
fi
KEYWORDS="~amd64 ~ia64 ~x86"
-IUSE="gles"
+IUSE="gles xv"
RDEPEND=">=x11-base/xorg-server-1.10
media-libs/mesa[egl,gbm]
@@ -31,6 +31,7 @@ DEPEND="${RDEPEND}"
src_configure() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable gles glamor-gles2)
+ $(use_enable xv)
)
xorg-2_src_configure
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-libs/glamor/
@ 2014-07-21 9:07 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2014-07-21 9:07 UTC (permalink / raw
To: gentoo-commits
commit: d8b680f459b4e7d3ce99ecd027baf51ffd38f006
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 21 09:07:45 2014 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Mon Jul 21 09:07:45 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=d8b680f4
x11-libs/glamor: sync dependencies with g-x86
---
x11-libs/glamor/glamor-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-libs/glamor/glamor-9999.ebuild b/x11-libs/glamor/glamor-9999.ebuild
index a6bc4ec..ed38d64 100644
--- a/x11-libs/glamor/glamor-9999.ebuild
+++ b/x11-libs/glamor/glamor-9999.ebuild
@@ -21,7 +21,7 @@ KEYWORDS="~amd64 ~ia64 ~x86"
IUSE="gles xv"
RDEPEND=">=x11-base/xorg-server-1.10
- media-libs/mesa[egl,gbm]
+ >=media-libs/mesa-10[egl,gbm]
gles? (
|| ( media-libs/mesa[gles2] media-libs/mesa[gles] )
)
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-07-21 9:07 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-16 11:52 [gentoo-commits] proj/x11:master commit in: x11-libs/glamor/ David Heidelberger
-- strict thread matches above, loose matches on Subject: below --
2014-07-21 9:07 Chi-Thanh Christopher Nguyen
2014-01-26 17:33 Chi-Thanh Christopher Nguyen
2013-03-29 17:56 Chi-Thanh Christopher Nguyen
2012-05-07 21:20 Chi-Thanh Christopher Nguyen
2012-02-27 9:21 Chi-Thanh Christopher Nguyen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox