From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RwMlG-0002LJ-Am for garchives@archives.gentoo.org; Sat, 11 Feb 2012 23:53:46 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 288B3E064A; Sat, 11 Feb 2012 23:53:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id DD6AAE064A for ; Sat, 11 Feb 2012 23:53:31 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DB7371B4006 for ; Sat, 11 Feb 2012 23:53:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 98E94E53FF for ; Sat, 11 Feb 2012 23:53:29 +0000 (UTC) From: "James Cloos" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Cloos" Message-ID: Subject: [gentoo-commits] proj/x11:master commit in: dev-libs/weston/ X-VCS-Repository: proj/x11 X-VCS-Files: dev-libs/weston/weston-0.85.0.ebuild dev-libs/weston/weston-9999.ebuild X-VCS-Directories: dev-libs/weston/ X-VCS-Committer: cloos X-VCS-Committer-Name: James Cloos X-VCS-Revision: b1407c63ed1b69d4f8d37f5f9f71820ec168c482 Date: Sat, 11 Feb 2012 23:53:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 1f9d81e6-90f0-4082-8053-a9c73c655a5f X-Archives-Hash: be830f83e2954dfa3ebf56dc326f2408 commit: b1407c63ed1b69d4f8d37f5f9f71820ec168c482 Author: James Cloos jhcloos com> AuthorDate: Sat Feb 11 23:35:59 2012 +0000 Commit: James Cloos jhcloos com> CommitDate: Sat Feb 11 23:42:20 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/x11.git;a=3Dc= ommit;h=3Db1407c63 dev-libs/weston: Add initial ebuild for wayland=E2=80=99s weston composi= tor =E2=80=A2 The dependencies may need more cleanup. =E2=80=A2 As may the USE flags. =E2=97=A6 Are they all well named? =E2=97=A6 Are they all necessary? =E2=97=A6 How many should default on? =E2=80=A2 Upstream=E2=80=99s Makefile.am does not install the simple cli= ents =E2=97=A6 Should they be install in /usr/bin with a =E2=80=9Cwayland-=E2= =80=9D prefix? =E2=97=A6 Or in a demos directory under /usr/share/doc/${PF}/ ? --- dev-libs/weston/weston-0.85.0.ebuild | 55 ++++++++++++++++++++++++++++= ++++++ dev-libs/weston/weston-9999.ebuild | 55 ++++++++++++++++++++++++++++= ++++++ 2 files changed, 110 insertions(+), 0 deletions(-) diff --git a/dev-libs/weston/weston-0.85.0.ebuild b/dev-libs/weston/westo= n-0.85.0.ebuild new file mode 100644 index 0000000..840b78b --- /dev/null +++ b/dev-libs/weston/weston-0.85.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D4 + +EGIT_REPO_URI=3D"git://anongit.freedesktop.org/git/wayland/${PN}" + +if [[ ${PV} =3D 9999* ]]; then + GIT_ECLASS=3D"git-2" + EXPERIMENTAL=3D"true" +fi + +inherit autotools toolchain-funcs $GIT_ECLASS + +DESCRIPTION=3D"Wayland reference compositor" +HOMEPAGE=3D"http://wayland.freedesktop.org/" + +if [[ $PV =3D 9999* ]]; then + SRC_URI=3D"${SRC_PATCHES}" +else + SRC_URI=3D"http://wayland.freedesktop.org/releases/${P}.tar.xz" +fi + +LICENSE=3D"CCPL-Attribution-ShareAlike-3.0 MIT" +SLOT=3D"0" +KEYWORDS=3D"" +IUSE=3D"+clients +drm +simple-clients static-libs +tablet +wayland-compo= sitor +x11" + +RDEPEND=3D"dev-libs/wayland + gnome-base/librsvg + >=3Dmedia-libs/mesa-7.10[egl,gles] + x11-libs/pixman + x11? ( x11-libs/libxcb x11-libs/libX11 ) + drm? ( >=3Dsys-fs/udev-136 >=3Dx11-libs/libdrm-2.4.23 media-libs/mesa[g= bm] ) + clients? ( >=3Dx11-libs/cairo-1.10.0 x11-libs/gdk-pixbuf dev-libs/glib:= 2 + x11-libs/libxkbcommon media-libs/libpng app-text/poppler )" +DEPEND=3D"${RDEPEND}" + +src_prepare() { + if [[ ${PV} =3D 9999* ]]; then + eautoreconf + fi +} + +src_configure() { + econf --disable-setuid-install + $(use_enable static-libs static) \ + $(use_enable drm drm-compositor) \ + $(use_enable wayland-compositor) \ + $(use_enable x11 x11-compositor) \ + $(use_enable tablet tablet-shell) \ + $(use_enable clients) \ + $(use_enable simple-clients) +} diff --git a/dev-libs/weston/weston-9999.ebuild b/dev-libs/weston/weston-= 9999.ebuild new file mode 100644 index 0000000..840b78b --- /dev/null +++ b/dev-libs/weston/weston-9999.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D4 + +EGIT_REPO_URI=3D"git://anongit.freedesktop.org/git/wayland/${PN}" + +if [[ ${PV} =3D 9999* ]]; then + GIT_ECLASS=3D"git-2" + EXPERIMENTAL=3D"true" +fi + +inherit autotools toolchain-funcs $GIT_ECLASS + +DESCRIPTION=3D"Wayland reference compositor" +HOMEPAGE=3D"http://wayland.freedesktop.org/" + +if [[ $PV =3D 9999* ]]; then + SRC_URI=3D"${SRC_PATCHES}" +else + SRC_URI=3D"http://wayland.freedesktop.org/releases/${P}.tar.xz" +fi + +LICENSE=3D"CCPL-Attribution-ShareAlike-3.0 MIT" +SLOT=3D"0" +KEYWORDS=3D"" +IUSE=3D"+clients +drm +simple-clients static-libs +tablet +wayland-compo= sitor +x11" + +RDEPEND=3D"dev-libs/wayland + gnome-base/librsvg + >=3Dmedia-libs/mesa-7.10[egl,gles] + x11-libs/pixman + x11? ( x11-libs/libxcb x11-libs/libX11 ) + drm? ( >=3Dsys-fs/udev-136 >=3Dx11-libs/libdrm-2.4.23 media-libs/mesa[g= bm] ) + clients? ( >=3Dx11-libs/cairo-1.10.0 x11-libs/gdk-pixbuf dev-libs/glib:= 2 + x11-libs/libxkbcommon media-libs/libpng app-text/poppler )" +DEPEND=3D"${RDEPEND}" + +src_prepare() { + if [[ ${PV} =3D 9999* ]]; then + eautoreconf + fi +} + +src_configure() { + econf --disable-setuid-install + $(use_enable static-libs static) \ + $(use_enable drm drm-compositor) \ + $(use_enable wayland-compositor) \ + $(use_enable x11 x11-compositor) \ + $(use_enable tablet tablet-shell) \ + $(use_enable clients) \ + $(use_enable simple-clients) +}