commit:     bcaeda147edececb884f685eea7c1116e00b299d
Author:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 19 16:05:51 2022 +0000
Commit:     Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Sat Nov 19 16:58:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcaeda14

sci-electronics/puff: Drop explicit linker format option

Fall back to using the default format options for LD as well as LLD.
Furthermore add explicite LDPATH to locate libX11.so

Closes: https://bugs.gentoo.org/831569
Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>

 sci-electronics/puff/files/puff-20181104-Makefile.patch | 5 +++--
 sci-electronics/puff/puff-20181104.ebuild               | 5 ++++-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/sci-electronics/puff/files/puff-20181104-Makefile.patch 
b/sci-electronics/puff/files/puff-20181104-Makefile.patch
index a874b9173aed..c51c87d1d33b 100644
--- a/sci-electronics/puff/files/puff-20181104-Makefile.patch
+++ b/sci-electronics/puff/files/puff-20181104-Makefile.patch
@@ -2,7 +2,7 @@
 # respect CC and LD
 --- Makefile.old       2021-07-03 16:34:49.937098627 +0200
 +++ Makefile   2021-07-03 16:33:56.615284555 +0200
-@@ -1,12 +1,13 @@
+@@ -1,12 +1,14 @@
  X11LIBDIR = /usr/X11R6/lib
  PASCALCOMPILER = fpc
 -CC = gcc
@@ -15,7 +15,8 @@
  puff: $(POBJS) puff_c.o ppas.sh
 -      sed 's/link.res/link.res puff_c.o -lX11/' <ppas.sh  >ppasx.sh
 +      sed -i -e 's!^[^[:space:]]\+ -b!$(LD) -b!g' ppas.sh
-+      sed 's/.res/.res $(LDFLAGS) puff_c.o -lX11/' <ppas.sh  >ppasx.sh
++      sed -i -e 's/\-b [^[:space:]]\+//g' ppas.sh
++      sed 's:.res:.res $(LDFLAGS) puff_c.o -lX11:' <ppas.sh  >ppasx.sh
        sh ppasx.sh
  
  %.o:  %.pas

diff --git a/sci-electronics/puff/puff-20181104.ebuild 
b/sci-electronics/puff/puff-20181104.ebuild
index 3ec8bccda1fa..ab384b49ccc0 100644
--- a/sci-electronics/puff/puff-20181104.ebuild
+++ b/sci-electronics/puff/puff-20181104.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -21,7 +21,10 @@ src_prepare() {
        default
        # fix lib path for X11 and dont ignore LDFLAGS
        # respect CC and LD
+       # additional drop explicite format option for linker (bug #831569)
        eapply -p0 "${FILESDIR}"/$P-Makefile.patch
+       # add missing LDPATH for libX11.so
+       sed -i -e "s:-lX11:-L/usr/$(get_libdir) -lX11:g" Makefile || die
        eapply_user
 }
 

Reply via email to