Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev-lua/mpack & dev-libs/libtermkey: Use appropriate pkg-config #35572

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 16 additions & 12 deletions dev-libs/libtermkey/files/libtermkey-0.22-libtool.patch
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Upstream is archived: https://github.com/neovim/libtermkey

From f3316ec933d618352ee9c6b1f1ef354c8896372e Mon Sep 17 00:00:00 2001
From df7da7e0beb467b97e25e4222f723fbdff369a95 Mon Sep 17 00:00:00 2001
From: orbea <orbea@riseup.net>
Date: Thu, 7 Sep 2023 09:52:10 -0700
Date: Wed, 28 Feb 2024 15:35:06 -0500
Subject: [PATCH] build: Add a minimal configure.ac

When building with slibtool using the rlibtool symlink the build will
Expand All @@ -12,23 +12,24 @@ rlibtool can determine if it should build shared or static libraries.
This can be fixed by adding a minimal configure.ac that can generate the
required files with autoreconf.

Gentoo Bug: https://bugs.gentoo.org/913482
Bug: https://bugs.gentoo.org/913482
---
Makefile => Makefile.in | 29 +++++++++++++++--------------
configure.ac | 14 ++++++++++++++
2 files changed, 29 insertions(+), 14 deletions(-)
rename Makefile => Makefile.in (91%)
Makefile => Makefile.in | 31 ++++++++++++++++---------------
configure.ac | 16 ++++++++++++++++
2 files changed, 32 insertions(+), 15 deletions(-)
rename Makefile => Makefile.in (89%)
create mode 100644 configure.ac

diff --git a/Makefile b/Makefile.in
similarity index 91%
similarity index 89%
rename from Makefile
rename to Makefile.in
index 199f143..8f12b07 100644
index 199f143..f59265b 100644
--- a/Makefile
+++ b/Makefile.in
@@ -1,14 +1,10 @@
pkgconfig = $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config $(1))
-pkgconfig = $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config $(1))
+pkgconfig = $(shell PKG_CONFIG_PATH=@PKG_CONFIG_PATH@ @PKG_CONFIG@ $(1))

-ifeq ($(shell uname),Darwin)
- LIBTOOL ?= glibtool
Expand Down Expand Up @@ -79,10 +80,10 @@ index 199f143..8f12b07 100644

diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..46fe30e
index 0000000..fdf86ce
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,14 @@
@@ -0,0 +1,16 @@
+m4_define([MAJOR], [0])
+m4_define([MINOR], [22])
+
Expand All @@ -91,9 +92,12 @@ index 0000000..46fe30e
+
+LT_INIT
+
+PKG_PROG_PKG_CONFIG
+
+AC_SUBST([top_builddir], [$abs_builddir])
+
+AC_SUBST([MAJOR], [MAJOR])
+AC_SUBST([MINOR], [MINOR])
+
+AC_OUTPUT
--
1 change: 1 addition & 0 deletions dev-lua/mpack/mpack-1.0.12.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ lua_src_compile() {
}

src_compile() {
tc-export PKG_CONFIG
lua_foreach_impl lua_src_compile
}

Expand Down