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 1C94B138334 for ; Sun, 19 Aug 2018 22:05:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06AE5E09D8; Sun, 19 Aug 2018 22:05:12 +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 D1B04E09D8 for ; Sun, 19 Aug 2018 22:05:11 +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 A25B9341230 for ; Sun, 19 Aug 2018 22:05:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E661439D for ; Sun, 19 Aug 2018 22:05:06 +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: <1534716299.a23737ff99c439d99c43ed7f97b3f42e3cf106d0.xmw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/dump1090/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/dump1090/dump1090-0.0_p20180509.ebuild X-VCS-Directories: net-wireless/dump1090/ X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber X-VCS-Revision: a23737ff99c439d99c43ed7f97b3f42e3cf106d0 X-VCS-Branch: master Date: Sun, 19 Aug 2018 22:05:06 +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: 9ebc5b39-89a0-40d4-8ee7-2ef707bea5eb X-Archives-Hash: 0ffb2280cbd11a44b6f52575cc23d988 commit: a23737ff99c439d99c43ed7f97b3f42e3cf106d0 Author: Michael Weber gentoo org> AuthorDate: Sun Aug 19 22:04:45 2018 +0000 Commit: Michael Weber gentoo org> CommitDate: Sun Aug 19 22:04:59 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a23737ff net-wireless/dump1090: Fix ebuild. - line continuation - level of string escape HTMLPATH - set DUMP1090_VERSION to omit git --describe call. Package-Manager: Portage-2.3.45, Repoman-2.3.10 net-wireless/dump1090/dump1090-0.0_p20180509.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net-wireless/dump1090/dump1090-0.0_p20180509.ebuild b/net-wireless/dump1090/dump1090-0.0_p20180509.ebuild index 73b4a4c99b0..219eca7ce77 100644 --- a/net-wireless/dump1090/dump1090-0.0_p20180509.ebuild +++ b/net-wireless/dump1090/dump1090-0.0_p20180509.ebuild @@ -32,9 +32,10 @@ DEPEND="${RDEPEND}" src_compile() { emake CC="$(tc-getCC)" \ - UNAME="Linux" + UNAME="Linux" \ + DUMP1090_VERSION=${PV} \ CFLAGS="$($(tc-getPKG_CONFIG) --cflags librtlsdr) ${CFLAGS}" \ - EXTRACFLAGS="-DHTMLPATH='/usr/share/dump1090/html'" \ + EXTRACFLAGS="-DHTMLPATH=\\\"/usr/share/dump1090/html\\\""\ LIBS="${LDFLAGS} $($(tc-getPKG_CONFIG) --libs librtlsdr) -lm -lpthread" }