Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 176255 - media-fonts/corefonts depends on app-arch/cabextract
Summary: media-fonts/corefonts depends on app-arch/cabextract
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: AMD64 Linux
: High normal (vote)
Assignee: Gentoo Fonts Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-27 15:15 UTC by Jacopo
Modified: 2007-04-28 01:25 UTC (History)
0 users

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 Jacopo 2007-04-27 15:15:37 UTC
corefonts depends on cabextract, but the dependence is not required in the ebuild.

Reproducible: Always
Comment 1 Ryan Hill (RETIRED) gentoo-dev 2007-04-27 23:40:35 UTC
sure it is.  that's how we get the good stuff on the inside out.

src_unpack() {
    for exe in ${A} ; do
        echo ">>> Unpacking ${exe} to ${WORKDIR}"
        cabextract --lowercase ${DISTDIR}/${exe} > /dev/null \
            || die "failed to unpack ${exe}"
    done
}
Comment 2 Jacopo 2007-04-28 01:25:33 UTC
(In reply to comment #0)
> corefonts depends on cabextract, but the dependence is not required in the
> ebuild.
> 
> Reproducible: Always
> 

(In reply to comment #1)
> sure it is.  that's how we get the good stuff on the inside out.
> 
> src_unpack() {
>     for exe in ${A} ; do
>         echo ">>> Unpacking ${exe} to ${WORKDIR}"
>         cabextract --lowercase ${DISTDIR}/${exe} > /dev/null \
>             || die "failed to unpack ${exe}"
>     done
> }
> 

I meant the other way around... for some strange reasons I didn't get the dependence. I guess I had /var messed up. Sorry about that