Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 926255 - net-print/epson-inkjet-printer-escpr-1.2.9 fails to compile: rlibtool: error logged in slbt_exec_link_create_dep_file(), line 1091: path not found: libescpr2.a.disabled
Summary: net-print/epson-inkjet-printer-escpr-1.2.9 fails to compile: rlibtool: error ...
Status: CONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Mike Pagano
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-03-06 10:34 UTC by Agostino Sarubbo
Modified: 2024-08-23 13:57 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
build.log (build.log,51.85 KB, text/plain)
2024-03-06 10:34 UTC, Agostino Sarubbo
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Agostino Sarubbo gentoo-dev 2024-03-06 10:34:11 UTC
https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/

Issue: net-print/epson-inkjet-printer-escpr-1.2.9 fails to compile.
Discovered on: amd64 (internal ref: slibtool_tinderbox)
System: SLIBTOOL-SYSTEM (https://wiki.gentoo.org/wiki/Project:Tinderbox/Common_Issues_Helper#SLIBTOOL)

Info about the issue:
https://wiki.gentoo.org/wiki/Project:Tinderbox/Common_Issues_Helper#CF0014
Comment 1 Agostino Sarubbo gentoo-dev 2024-03-06 10:34:12 UTC
Created attachment 886799 [details]
build.log

build log and emerge --info
Comment 2 Agostino Sarubbo gentoo-dev 2024-03-06 10:34:12 UTC
Error(s) that match a know pattern in addition to what has been reported in the summary:


/var/tmp/portage/net-print/epson-inkjet-printer-escpr-1.2.9/temp/environment: line 614: --with-cupsppddir=/usr/share/ppd: No such file or directory
rlibtool: error logged in slbt_exec_link_create_dep_file(), line 1091: path not found: ./lib/.libs/libescpr2.a.disabled.
Comment 3 orbea 2024-08-23 13:57:59 UTC
In escprlib/Makefile.am the libescpr2_la_SOURCES variable is empty where libescpr2_la_LIBADD contains ./lib/libescpr2.la. However in escprlib/lib/Makefile.am the all target is overwritten.

all:
        rm -fr .libs
        mkdir .libs
        cp lib@ESCPR_LIB_NAME@.a .libs/libescpr2.a

So its not a surprise that slibtool can't find its internal files, but I am not really sure what the intent here was or what to do about it. Perhaps it shouldn't be using libtool at all for these files?