Jannis234 / jm-overlay

A portage overlay for gentoo users
14 stars 7 forks source link

Failing to emerge app-pda/sachesi-2.0.4::jm-overlay lrelease: No such file or directory #29

Closed F3llFr0mTh3Sky closed 1 year ago

F3llFr0mTh3Sky commented 1 year ago

Hello, My gentoo system is up to date, latest portage and latest Qt 5.15.10-r1. So the issue is app-pda/sachesi-2.0.4 fails to emerge. See the logs here : http://0x0.st/HLly.txt http://0x0.st/HLlt.log Some users on IRC pointed out that it might be related to this : https://www.gentoo.org/support/news-items/2022-03-30-qt-5_15_3-bump.html

I found a similar issue here : https://github.com/xsacha/Sachesi/issues/105

F3llFr0mTh3Sky commented 1 year ago

Bugfix : Add this code before src_configure()

src_prepare() {
        default

        sed -i -e 's/lquazip/lquazip1-qt5/' Sachesi.pro || die

        "$(qt5_get_bindir)"/lrelease Sachesi.pro || die
}
Jannis234 commented 1 year ago

Updated, thanks for providing the fix!

F3llFr0mTh3Sky commented 1 year ago

you welcome