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 482E6138334 for ; Fri, 29 Nov 2019 10:04:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86594E098A; Fri, 29 Nov 2019 10:04:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3EB36E098A for ; Fri, 29 Nov 2019 10:04:35 +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 2AC9134D570 for ; Fri, 29 Nov 2019 10:04:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71CC18B8 for ; Fri, 29 Nov 2019 10:04:32 +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: <1575021848.5c4950ce52116827246dd61b16ffaba404830c91.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenglrecorder/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild X-VCS-Directories: media-libs/libopenglrecorder/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5c4950ce52116827246dd61b16ffaba404830c91 X-VCS-Branch: master Date: Fri, 29 Nov 2019 10:04:32 +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: 31867c68-8203-4140-b7f1-49da7f636307 X-Archives-Hash: 42c485f7663b294e03c1768ac7f9571a commit: 5c4950ce52116827246dd61b16ffaba404830c91 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Nov 29 10:00:24 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Nov 29 10:04:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c4950ce media-libs/libopenglrecorder: Actually fix indendation Package-Manager: Portage-2.3.80, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild b/media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild index 63b0e6ac7f8..f948ce3df0b 100644 --- a/media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild +++ b/media-libs/libopenglrecorder/libopenglrecorder-0.1.0.ebuild @@ -32,11 +32,11 @@ DOCS=( CHANGELOG.md README.md USAGE.md ) multilib_src_configure() { local mycmakeargs=( - -DBUILD_PULSE_WO_DL=ON - -DSTATIC_RUNTIME_LIBS=OFF - -DBUILD_WITH_H264=$(usex openh264) - -DBUILD_RECORDER_WITH_SOUND=$(usex sound) - -DBUILD_WITH_VPX=$(usex vpx) + -DBUILD_PULSE_WO_DL=ON + -DSTATIC_RUNTIME_LIBS=OFF + -DBUILD_WITH_H264=$(usex openh264) + -DBUILD_RECORDER_WITH_SOUND=$(usex sound) + -DBUILD_WITH_VPX=$(usex vpx) ) cmake-utils_src_configure }