Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 66335 - ghostscript-7.05.6-r1 does not emerge (sed: can't read Makefile.in)
Summary: ghostscript-7.05.6-r1 does not emerge (sed: can't read Makefile.in)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: PPC Linux
: High normal (vote)
Assignee: Printing Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-10-04 12:17 UTC by Steph L
Modified: 2004-10-04 16:08 UTC (History)
2 users (show)

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Steph L 2004-10-04 12:17:41 UTC
The bug is said to be fixed : 
http://bugs.gentoo.org/show_bug.cgi?id=66014
http://bugs.gentoo.org/show_bug.cgi?id=66016

but it's not true : problem still exist


Reproducible: Always
Steps to Reproduce:
1.emerge xpdf will try to emerge ghostscript-7.05.6-r1 on PPC which won't be built



Expected Results:  
The fix is easy : prepend ${S}/ before src/Makefile.in in the ebuild 

-       src/Makefile.in || die "sed failed"
+       ${S}/src/Makefile.in || die "sed failed"
        sed -i -e 's:$(gsdir)/fonts:/usr/share/fonts/default/ghostscript/:' \
-       src/Makefile.in || die "sed failed"
+       ${S}/src/Makefile.in || die "sed failed"
Comment 1 Steph L 2004-10-04 12:18:38 UTC
Fix : 
-       src/Makefile.in || die "sed failed"
+       ${S}/src/Makefile.in || die "sed failed"
        sed -i -e 's:$(gsdir)/fonts:/usr/share/fonts/default/ghostscript/:' \
-       src/Makefile.in || die "sed failed"
+       ${S}/src/Makefile.in || die "sed failed"
Comment 2 Luca Barbato gentoo-dev 2004-10-04 16:08:28 UTC
should be fixed now, thanks for your report