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 15E56138334 for ; Mon, 22 Apr 2019 10:41:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9457FE0886; Mon, 22 Apr 2019 10:41:39 +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 7BA6BE0886 for ; Mon, 22 Apr 2019 10:41:39 +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 74398341FFE for ; Mon, 22 Apr 2019 10:41:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62A955CB for ; Mon, 22 Apr 2019 10:41:34 +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: <1555929681.671e16c02dd58afb6bd8f41ab9f33a2b8f1f0466.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ckb/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/ckb/ckb-0.2.9-r1.ebuild X-VCS-Directories: app-misc/ckb/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 671e16c02dd58afb6bd8f41ab9f33a2b8f1f0466 X-VCS-Branch: master Date: Mon, 22 Apr 2019 10:41:34 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f724297c-df68-42c2-89f9-795822c3e8dc X-Archives-Hash: 288f2e2bb3644b9a25f381cff8e147a8 commit: 671e16c02dd58afb6bd8f41ab9f33a2b8f1f0466 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Apr 22 09:47:30 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Apr 22 10:41:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=671e16c0 app-misc/ckb: EAPI-7 bump, missing desktop.eclass, missing DEPENDs Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> app-misc/ckb/ckb-0.2.9-r1.ebuild | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/app-misc/ckb/ckb-0.2.9-r1.ebuild b/app-misc/ckb/ckb-0.2.9-r1.ebuild new file mode 100644 index 00000000000..a0d3d2a09f0 --- /dev/null +++ b/app-misc/ckb/ckb-0.2.9-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop qmake-utils systemd + +DESCRIPTION="Corsair K65/K70/K95 Driver" +HOMEPAGE="https://github.com/ckb-next/ckb-next" +SRC_URI="https://github.com/ckb-next/ckb-next/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + >=dev-libs/quazip-0.7.2[qt5(+)] + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + virtual/libudev:= + x11-libs/libX11 +" +RDEPEND="${DEPEND}" + +DOCS=( README.md BUILD.md DAEMON.md ) + +S="${WORKDIR}/${PN}-next-${PV}" + +src_prepare() { + default + sed -i -e "s/-Werror=all//" src/ckb-daemon/ckb-daemon.pro || die + sed -i -e "/quazip/d" -e "s/^.*QUAZIP_STATIC/LIBS += -lquazip5/" src/ckb/ckb.pro || die + sed -i -e "s#/usr/lib#/usr/libexec#" src/ckb/animscript.cpp || die +} + +src_configure() { + eqmake5 +} + +src_install() { + dobin bin/ckb bin/ckb-daemon + dodir /usr/bin/ckb-animations + exeinto /usr/libexec/ckb-animations + doexe bin/ckb-animations/* + + newinitd "${FILESDIR}"/ckb.initd ckb-daemon + domenu usr/ckb.desktop + doicon usr/ckb.png + systemd_dounit service/systemd/ckb-daemon.service +}