Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 198478 - aircrack-ng ebuilds don't install all binaries (3 left)
Summary: aircrack-ng ebuilds don't install all binaries (3 left)
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High major (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-11-08 18:33 UTC by Federico Moro
Modified: 2007-11-08 18:43 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 Federico Moro 2007-11-08 18:33:33 UTC
aircrack-ng ebuilds are wrong in emake call in src_install function.
At least 3 binaries of this package needed for use aircrack-ng (i.e. airodump) aren't be installed (they should be in /usr/sbin/.
One possible solution is change emake call in src_install adding "install", like this:

    emake \
        prefix=/usr \
        docdir="/usr/share/doc/${PF}" \
        mandir="/usr/share/man/man1" \
        destdir="${D}" \
        ${target} \
        doc \
        install || die "emake install failed"

Changing this all binaries will be installed.

Reproducible: Always
Comment 1 Raúl Porcel (RETIRED) gentoo-dev 2007-11-08 18:38:16 UTC
USE="wifi" emerge aircrack-ng and you'll have your binaries
Comment 2 Federico Moro 2007-11-08 18:43:45 UTC
oh, I didn't see it, thanks you.