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 EC3A6158094 for ; Wed, 5 Oct 2022 10:27:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C1A7E08A2; Wed, 5 Oct 2022 10:27:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F33A8E08A2 for ; Wed, 5 Oct 2022 10:27:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC836340FFB for ; Wed, 5 Oct 2022 10:27:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A3965BF for ; Wed, 5 Oct 2022 10:27:49 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1664965594.2b8ff7e7fd4fa732786eebe87b4e8ad4530b61bc.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libaxc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libaxc/libaxc-0.3.7-r1.ebuild X-VCS-Directories: net-libs/libaxc/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 2b8ff7e7fd4fa732786eebe87b4e8ad4530b61bc X-VCS-Branch: master Date: Wed, 5 Oct 2022 10:27:49 +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: b29672bd-5ee6-4c00-a823-ee2c16917eb2 X-Archives-Hash: 797dd7cd936da1fffbf4c2e381a3813e commit: 2b8ff7e7fd4fa732786eebe87b4e8ad4530b61bc Author: Sebastian Pipping gentoo org> AuthorDate: Wed Oct 5 10:26:08 2022 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Oct 5 10:26:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b8ff7e7 net-libs/libaxc: Fix compilation with clang Closes: https://bugs.gentoo.org/875104 Signed-off-by: Sebastian Pipping gentoo.org> net-libs/libaxc/libaxc-0.3.7-r1.ebuild | 75 ++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/net-libs/libaxc/libaxc-0.3.7-r1.ebuild b/net-libs/libaxc/libaxc-0.3.7-r1.ebuild new file mode 100644 index 000000000000..e217a88d83cf --- /dev/null +++ b/net-libs/libaxc/libaxc-0.3.7-r1.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +MY_P="axc-${PV}" +DESCRIPTION="Client library for libsignal-protocol-c" +HOMEPAGE="https://github.com/gkdr/axc" +SRC_URI="https://github.com/gkdr/axc/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" # not GPL-3+ +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs test" + +RDEPEND=" + dev-db/sqlite + dev-libs/glib + dev-libs/libgcrypt + net-libs/libsignal-protocol-c + " +DEPEND=" + ${RDEPEND} + test? ( dev-util/cmocka ) + " +BDEPEND="virtual/pkgconfig" + +S="${WORKDIR}"/${MY_P} +RESTRICT="!test? ( test )" + +DOCS=( CHANGELOG.md README.md ) + +src_prepare() { + rm -R lib || die # unbundle libsignal-protocol-c + default +} + +src_compile() { + local make_args=( + PREFIX=/usr + + AR="$(tc-getAR)" + CC="$(tc-getCC)" + PKG_CONFIG="$(tc-getPKG_CONFIG)" + + ARCH= + ) + emake "${make_args[@]}" +} + +src_test() { + # TODO: Test failures seem to be ignored in the upstream Makefile? + # e.g. https://github.com/gkdr/axc/blob/master/Makefile#L153 + emake CC="$(tc-getCC)" test +} + +src_install() { + emake DESTDIR="${D}" PREFIX=/usr ARCH= install + + # Respect libdir other than /usr/lib, e.g. /usr/lib64 + local libdir="$(get_libdir)" + if [[ ${libdir} != lib ]]; then + mv "${ED}"/usr/{lib,${libdir}} || die + sed "s|^libdir=.*|libdir=\${prefix}/${libdir}|" \ + -i "${ED}/usr/${libdir}/pkgconfig/libaxc.pc" || die + fi + + einstalldocs + + if ! use static-libs ; then + rm "${ED}/usr/${libdir}/libaxc.a" || die + fi +}