Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 250463 - FreeMiNT dev-lang/perl support
Summary: FreeMiNT dev-lang/perl support
Status: RESOLVED FIXED
Alias: None
Product: Gentoo/Alt
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All FreeMiNT
: High normal (vote)
Assignee: Gentoo Prefix
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-09 23:15 UTC by Alan Hourihane
Modified: 2008-12-14 21:42 UTC (History)
0 users

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


Attachments
ebuild patch (perl.patch,1.75 KB, patch)
2008-12-09 23:15 UTC, Alan Hourihane
Details | Diff
files patch (perl-5.8.8-mint.patch,16.57 KB, patch)
2008-12-09 23:15 UTC, Alan Hourihane
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Alan Hourihane 2008-12-09 23:15:01 UTC
ebuild & files patch.
Comment 1 Alan Hourihane 2008-12-09 23:15:14 UTC
Created attachment 174811 [details, diff]
ebuild patch
Comment 2 Alan Hourihane 2008-12-09 23:15:34 UTC
Created attachment 174813 [details, diff]
files patch
Comment 3 Alan Hourihane 2008-12-09 23:15:58 UTC
Also, multilib.eclass can now be changed from ".a" to ".irrelevant"
Comment 4 Michael Haubenwallner (RETIRED) gentoo-dev 2008-12-10 07:49:07 UTC
(In reply to comment #1)
> Created an attachment (id=174811) [edit]
> ebuild patch

> -	[[ $(get_libname) != .a ]] && { # for AIX
> +	[[ $(get_libname) != .a ]] && [[ ${CHOST} != *-mint* ]] && { # for AIX

Eventually this could be done somehow like:
    [[ $(get_libname) != .a ]] && # AIX
    [[ $(get_libname) != .irrelevant ]] &&  # FreeMiNT
    {

Because who says that there aren't more platforms without shared libs?
Comment 5 Fabian Groffen gentoo-dev 2008-12-14 21:42:35 UTC
I applied a slightly modified version of your ebuild patch.  Thanks!