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 B222E1396D0 for ; Sun, 17 Sep 2017 16:18:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 756FCE0E92; Sun, 17 Sep 2017 16:18:50 +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 4BDDFE0E92 for ; Sun, 17 Sep 2017 16:18:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AEE7733BEBE for ; Sun, 17 Sep 2017 16:18:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BB93907B for ; Sun, 17 Sep 2017 16:18:47 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1505665027.e0069282cab478f4343d4d439b22876f0ee76fb7.asturm@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-r1.ebuild X-VCS-Directories: app-misc/qlcplus/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e0069282cab478f4343d4d439b22876f0ee76fb7 X-VCS-Branch: master Date: Sun, 17 Sep 2017 16:18:47 +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: 9d7b1852-3730-4851-aa82-3980930f7992 X-Archives-Hash: ae49d407c69e8e5786e1be9e7720e49b commit: e0069282cab478f4343d4d439b22876f0ee76fb7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun May 28 19:26:54 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Sep 17 16:17:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0069282 app-misc/qlcplus: Drop USE=qt4,qt5, build w/ Qt5 unconditionally, EAPI 6 Drop unneeded qt4-r2 and eutils eclasses Sort dependencies Switch to virtx emake check Package-Manager: Portage-2.3.5, Repoman-2.3.1 app-misc/qlcplus/qlcplus-4.10.5b-r1.ebuild | 55 ++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/app-misc/qlcplus/qlcplus-4.10.5b-r1.ebuild b/app-misc/qlcplus/qlcplus-4.10.5b-r1.ebuild new file mode 100644 index 00000000000..9d4d685ddec --- /dev/null +++ b/app-misc/qlcplus/qlcplus-4.10.5b-r1.ebuild @@ -0,0 +1,55 @@ +# 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 + +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 +} + +src_test() { + virtx emake check +}