public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/wlc/
Date: Thu, 16 Mar 2017 19:13:01 +0000 (UTC)	[thread overview]
Message-ID: <1489691490.4e5e81b20b8cfca272ee5d2a63a33cd448d60e68.soap@gentoo> (raw)

commit:     4e5e81b20b8cfca272ee5d2a63a33cd448d60e68
Author:     Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
AuthorDate: Sun Mar 12 11:07:01 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 19:11:30 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e5e81b2

dev-libs/wlc: version bump to 0.0.8

Closes: https://github.com/gentoo/gentoo/pull/4189

 dev-libs/wlc/Manifest         |  1 +
 dev-libs/wlc/wlc-0.0.8.ebuild | 54 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-libs/wlc/Manifest b/dev-libs/wlc/Manifest
index 661664eb22e..77607cab60d 100644
--- a/dev-libs/wlc/Manifest
+++ b/dev-libs/wlc/Manifest
@@ -1,3 +1,4 @@
 DIST wlc-0.0.5.tar.bz2 207900 SHA256 17aa8e8f4beb62b630433dd69247f272caf0575d2638726cfc1808a4239db136 SHA512 d5d0f299e713306b6c08e78b87ab8eaf9ff974aedd29b353c0db5a1a23602248306e7cd1918136f95663726fa028aa531bd496a7f24f5eaba8ba309e9af801f7 WHIRLPOOL 04f46251eac5dc21ec3071d46020819330452f61f7d60f4b9a3ac44104d0da8e65a8cd073d4a74968cb0bbf3eab57d13a62a09fd942a45157b470c2a89f742bc
 DIST wlc-0.0.6.tar.bz2 234155 SHA256 302a14252757f05ed009077a674b07942ff46fc7c3da0759fed4fedbc8c12329 SHA512 944e3b34436618a1288488dcb8eb7ea2db46e32f73e4d07e4e896fe94cd0084857008f900257846098af4094bf5351bd7ec7d4c6aef427d0991922fd04049dc9 WHIRLPOOL a026a240edb1fa3d961f6fe765b5e30abfe448e2beb6c6623e8d95fa2640ffdc02b030c1f0fa8733fda235b541ca373c0e88bdbb2e253a203b2f3bf6da1fd6dc
 DIST wlc-0.0.7.tar.bz2 234305 SHA256 47e9b756d3fd621df913a6fbc9378c47aa8f9c3be7c2228a657a2411a7211979 SHA512 19775e965d5fc6501be4fa004955e4403859dfbcfaa99897977f4ad3a13493c08a70f7e5c77a1ab76e892c3fa855658a37082bd077287ead08240888b7fc17f0 WHIRLPOOL 57c746a5331686b112920353dff8797a6fbaaca4c6241573659a54649c6214b2224d5dd0fad202574a1358fc06b5d8dcc47c563d216ad0333347a283564cc85f
+DIST wlc-0.0.8.tar.bz2 236970 SHA256 1a7d7758028b0caa75418268f59e2290420850d0f3226ecf74316405d2c5ace5 SHA512 5ddf7dfc5115fa51ea078933b60c6e8ef9515db98f1c47d4ecfe3f49e07dbdadf2bbeb6f6002cc83d13098dee5fa7e66fcae211a58bd762ee984088aebadb779 WHIRLPOOL e99da312339bbc7b3c9c77dcec14b185132bb1216512f85e488cefc7b2b2108793fd7acaba0f172f753b4b38b7551c190758ed778514050a47262a808f86e80e

diff --git a/dev-libs/wlc/wlc-0.0.8.ebuild b/dev-libs/wlc/wlc-0.0.8.ebuild
new file mode 100644
index 00000000000..ac6b8195400
--- /dev/null
+++ b/dev-libs/wlc/wlc-0.0.8.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="A helper library for Wayland compositors"
+HOMEPAGE="https://github.com/Cloudef/wlc"
+
+SRC_URI="https://github.com/Cloudef/wlc/releases/download/v${PV}/${P}.tar.bz2"
+
+LICENSE="MIT ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="X static-libs systemd xwayland"
+
+RDEPEND="virtual/opengl
+	media-libs/mesa[wayland,gbm,gles2,egl]
+	x11-libs/libdrm
+	x11-libs/pixman
+	x11-libs/libxkbcommon
+	x11-misc/xkeyboard-config
+	dev-libs/libinput
+	dev-libs/wayland
+	X? ( x11-libs/libX11
+		 x11-libs/libxcb[xkb]
+		 x11-libs/xcb-util-image
+		 x11-libs/xcb-util-wm
+		 x11-libs/libXfixes )
+	xwayland? ( x11-base/xorg-server[wayland] )
+	systemd? ( sys-apps/systemd sys-apps/dbus )"
+
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+	>=dev-libs/wayland-protocols-1.7"
+
+src_configure() {
+	local mycmakeargs=(
+		-DWLC_BUILD_EXAMPLES=OFF
+		-DWLC_BUILD_TESTS=OFF
+		-DWLC_BUILD_STATIC=$(usex static-libs)
+		-DWLC_X11_SUPPORT=$(usex X)
+		$(cmake-utils_use_find_package systemd Systemd)
+		$(cmake-utils_use_find_package systemd Dbus)
+	)
+	cmake-utils_src_configure
+}
+
+pkg_postinst() {
+	if use X && ! use xwayland; then
+		elog "xwayland use flag is required for X11 applications support"
+	fi
+}


             reply	other threads:[~2017-03-16 19:13 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-16 19:13 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-04-30 18:02 [gentoo-commits] repo/gentoo:master commit in: dev-libs/wlc/ Matthew Thode
2018-05-05 21:47 Aaron Bauman
2017-11-12 18:01 Patrice Clement
2017-11-12 18:01 Patrice Clement
2017-07-30 14:37 David Seifert
2017-07-30 14:37 David Seifert
2017-07-30 14:37 David Seifert
2017-05-04 16:58 David Seifert
2017-05-04 16:58 David Seifert
2017-03-30 23:33 Göktürk Yüksek
2017-03-28 19:18 Göktürk Yüksek
2017-03-16 19:13 David Seifert
2017-01-15  5:09 Göktürk Yüksek
2017-01-15  5:09 Göktürk Yüksek
2016-11-21 19:16 David Seifert
2016-11-04 22:23 Patrice Clement
2016-11-04 22:23 Patrice Clement
2016-11-04 22:23 Patrice Clement
2016-08-25 17:51 Patrice Clement
2016-07-08  2:54 Göktürk Yüksek
2016-05-24  3:06 Ian Delaney
2016-05-21  5:01 Ian Delaney
2016-05-13  3:34 Ian Delaney
2016-05-12  2:29 Ian Delaney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1489691490.4e5e81b20b8cfca272ee5d2a63a33cd448d60e68.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox