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 3FB39138350 for ; Tue, 31 Mar 2020 15:04:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83C5EE0B33; Tue, 31 Mar 2020 15:04:05 +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 68718E0B33 for ; Tue, 31 Mar 2020 15:04:05 +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 1169C34F169 for ; Tue, 31 Mar 2020 15:04:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABE8C18F for ; Tue, 31 Mar 2020 15:04:02 +0000 (UTC) From: "Rick Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rick Farina" Message-ID: <1585667045.b6dc22cfdea85d2a07e7973fada179be756aa386.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-ppm-wiegand/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild X-VCS-Directories: net-wireless/gr-ppm-wiegand/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Rick Farina X-VCS-Revision: b6dc22cfdea85d2a07e7973fada179be756aa386 X-VCS-Branch: master Date: Tue, 31 Mar 2020 15:04:02 +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: f2e41f7b-4a51-4c3f-9c5d-930a303d55fa X-Archives-Hash: 37001f1e15503c15d2fbd4d78cd20fab commit: b6dc22cfdea85d2a07e7973fada179be756aa386 Author: Rick Farina gentoo org> AuthorDate: Tue Mar 31 15:03:56 2020 +0000 Commit: Rick Farina gentoo org> CommitDate: Tue Mar 31 15:04:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6dc22cf net-wireless/gr-ppm-wiegand: fix qa warning Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Rick Farina gentoo.org> net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild b/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild index 793f5725988..6807b68ba67 100644 --- a/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild +++ b/net-wireless/gr-ppm-wiegand/gr-ppm-wiegand-9999.ebuild @@ -27,3 +27,17 @@ RDEPEND="${PYTHON_DEPS} DEPEND="${RDEPEND} dev-libs/boost:= dev-util/cppunit" + +src_configure() { + #not supported by upstream...yet + mycmakeargs=( + -DGR_PKG_DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" + ) + cmake-utils_src_configure +} + +src_install(){ + default + dodir "/usr/share/doc/${PF}" + mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${PF}" +}