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 277D01382C5 for ; Wed, 14 Apr 2021 09:08:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64029E0BE2; Wed, 14 Apr 2021 09:08:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 48437E0BDF for ; Wed, 14 Apr 2021 09:08:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7D0B2340D6E for ; Wed, 14 Apr 2021 09:08:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1AA26702 for ; Wed, 14 Apr 2021 09:08:00 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1618358166.763368d89cca30926be9a69d0fe02ffd10847af6.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-libs/safeclib/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-libs/safeclib/safeclib-3.6.0_p20210407.ebuild X-VCS-Directories: sys-libs/safeclib/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 763368d89cca30926be9a69d0fe02ffd10847af6 X-VCS-Branch: master Date: Wed, 14 Apr 2021 09:08:00 +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: 3a281948-63ba-4758-bdc7-e4ea707a4f9a X-Archives-Hash: fb1b41a1524a491ce866dba6a14a212f commit: 763368d89cca30926be9a69d0fe02ffd10847af6 Author: Alessandro Barbieri gmail com> AuthorDate: Tue Apr 13 23:56:06 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Tue Apr 13 23:56:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=763368d8 sys-libs/safeclib: use the right makefile USE=modules still fail for me Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> sys-libs/safeclib/safeclib-3.6.0_p20210407.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/sys-libs/safeclib/safeclib-3.6.0_p20210407.ebuild b/sys-libs/safeclib/safeclib-3.6.0_p20210407.ebuild index 7a5fe84fd..f3ba40fda 100644 --- a/sys-libs/safeclib/safeclib-3.6.0_p20210407.ebuild +++ b/sys-libs/safeclib/safeclib-3.6.0_p20210407.ebuild @@ -17,12 +17,14 @@ KEYWORDS="~amd64" IUSE="+constraint-handler +extensions modules norm-compat +nullslack test unsafe valgrind" RESTRICT="!test? ( test )" BDEPEND=" + app-doc/doxygen[dot] valgrind? ( dev-util/valgrind ) " S="${WORKDIR}/${PN}-${MY_REV}" -MODULE_NAMES="slkm(misc:${S}-module:${S}-module/src)" +MODULE_NAMES="slkm(misc:${S}-module:${S}-module)" BUILD_TARGETS="all" +BUILD_PARAMS="-f Makefile.kernel" src_prepare() { eautoreconf @@ -62,11 +64,13 @@ src_compile() { if use modules ; then cd "${S}-module" || die - linux-mod_src_compile || die + linux-mod_src_compile fi } src_install() { + # wcsstr towupper towlower manpages collide with sys-apps/man-pages + # what to do? default einstalldocs rm -r doc/man || die @@ -74,7 +78,7 @@ src_install() { if use modules ; then cd "${S}-module" || die - linux-mod_src_install || die + linux-mod_src_install fi }