commit: 763368d89cca30926be9a69d0fe02ffd10847af6
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue Apr 13 23:56:06 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> 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 <lssndrbarbieri <AT> 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
}