From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5F5E01396D0 for ; Fri, 29 Sep 2017 05:37:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87B4BE0BB3; Fri, 29 Sep 2017 05:37:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65257E0BB3 for ; Fri, 29 Sep 2017 05:37:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CC183341759 for ; Fri, 29 Sep 2017 05:37:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E5109087 for ; Fri, 29 Sep 2017 05:37:48 +0000 (UTC) From: "Michael Weber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Weber" Message-ID: <1506663460.ef03593d1c5d3bddefee7a90d9417556234dd90c.xmw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/qlcplus/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/qlcplus/qlcplus-4.10.5b-r2.ebuild X-VCS-Directories: app-misc/qlcplus/ X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber X-VCS-Revision: ef03593d1c5d3bddefee7a90d9417556234dd90c X-VCS-Branch: master Date: Fri, 29 Sep 2017 05:37:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d539befe-26a6-4bae-bc71-6017d52acd28 X-Archives-Hash: 906d4320bbaf4280d97290a46166896d commit: ef03593d1c5d3bddefee7a90d9417556234dd90c Author: Michael Weber gentoo org> AuthorDate: Fri Sep 29 05:33:42 2017 +0000 Commit: Michael Weber gentoo org> CommitDate: Fri Sep 29 05:37:40 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef03593d app-misc/qlcplus: inherit xdg for xdg_desktop_database_update, fix sandbox violation https://bugs.gentoo.org/621500#c2. Package-Manager: Portage-2.3.10, Repoman-2.3.3 app-misc/qlcplus/qlcplus-4.10.5b-r2.ebuild | 59 ++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/app-misc/qlcplus/qlcplus-4.10.5b-r2.ebuild b/app-misc/qlcplus/qlcplus-4.10.5b-r2.ebuild new file mode 100644 index 00000000000..9d50c6300aa --- /dev/null +++ b/app-misc/qlcplus/qlcplus-4.10.5b-r2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit qmake-utils udev vcs-snapshot virtualx xdg + +DESCRIPTION="QLC+ - Q Light Controller Plus to control DMX interfaces" +HOMEPAGE="http://www.qlcplus.org/" +SRC_URI="https://github.com/mcallegari/${PN}/archive/QLC+_${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + || ( dev-embedded/libftdi:1 dev-embedded/libftdi:0 ) + dev-libs/glib:2 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtmultimedia:5[widgets] + dev-qt/qtnetwork:5 + dev-qt/qtscript:5 + dev-qt/qttest:5 + dev-qt/qtwidgets:5 + media-libs/alsa-lib + media-libs/libmad + media-libs/libsndfile + sci-libs/fftw:3.0 + virtual/libusb:0 + virtual/libusb:1 + virtual/udev +" +DEPEND="${RDEPEND}" + +src_prepare() { + default + sed -e "s:/etc/udev/rules.d:${EROOT}lib/udev/rules.d:" -i \ + plugins/hid/hid.pro \ + plugins/udmx/src/src.pro \ + plugins/dmxusb/src/src.pro \ + plugins/spi/spi.pro \ + plugins/peperoni/unix/unix.pro || die + sed -e "/UDEVRULESDIR/s:/etc/udev/rules.d:$(get_udevdir)/rules.d:" \ + -i variables.pri || die +} + +src_configure() { + eqmake5 + + # sandbox error "mkdir /usr/share/qlcplus" + # see https://bugs.gentoo.org/621500#c2 + export INSTALL_ROOT="${D}" +} + +src_test() { + virtx emake check +}