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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BFBDD158094 for ; Sat, 9 Jul 2022 10:07:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D598FE0B3B; Sat, 9 Jul 2022 10:07:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C03E0E0B3B for ; Sat, 9 Jul 2022 10:07:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E5D8733F6A5 for ; Sat, 9 Jul 2022 10:07:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74AE051F for ; Sat, 9 Jul 2022 10:07:53 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1657361266.5b598e9827ac16d65750a8c50cd89dafde58736a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ossp-uuid/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/ossp-uuid/ossp-uuid-1.6.2-r7.ebuild X-VCS-Directories: dev-libs/ossp-uuid/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 5b598e9827ac16d65750a8c50cd89dafde58736a X-VCS-Branch: master Date: Sat, 9 Jul 2022 10:07:53 +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: 75a0b86e-0ad1-4590-9319-1accc5af50f5 X-Archives-Hash: 4c0a66a392144ed166df503b0fcc3c95 commit: 5b598e9827ac16d65750a8c50cd89dafde58736a Author: David Seifert gentoo org> AuthorDate: Sat Jul 9 10:07:46 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Jul 9 10:07:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b598e98 dev-libs/ossp-uuid: fix USE=-cxx Closes: https://bugs.gentoo.org/857021 Signed-off-by: David Seifert gentoo.org> dev-libs/ossp-uuid/ossp-uuid-1.6.2-r7.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-libs/ossp-uuid/ossp-uuid-1.6.2-r7.ebuild b/dev-libs/ossp-uuid/ossp-uuid-1.6.2-r7.ebuild index 33616b0f8acd..56db655f8681 100644 --- a/dev-libs/ossp-uuid/ossp-uuid-1.6.2-r7.ebuild +++ b/dev-libs/ossp-uuid/ossp-uuid-1.6.2-r7.ebuild @@ -83,5 +83,7 @@ src_install() { mv "${ED}"/usr/$(get_libdir)/pkgconfig/{,ossp-}uuid.pc || die mv "${ED}"/usr/share/man/man3/uuid.3{,ossp} || die - mv "${ED}"/usr/share/man/man3/uuid++.3{,ossp} || die + if use cxx; then + mv "${ED}"/usr/share/man/man3/uuid++.3{,ossp} || die + fi }