Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 16135 - popt dependency of rsync missing
Summary: popt dependency of rsync missing
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal
Assignee: Luca Barbato
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-02-21 07:16 UTC by Patrick Kursawe (RETIRED)
Modified: 2003-02-23 20:03 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 Patrick Kursawe (RETIRED) gentoo-dev 2003-02-21 07:16:56 UTC
rsync uses dev-libs/popt, but the dependency is missing.

Reproducible: Always
Steps to Reproduce:
ldd /usr/bin/rsync
qpkg -q popt
Actual Results:  
It showed that rsync uses popt, but the dependency is missing :-)
Comment 1 Martin Holzer (RETIRED) gentoo-dev 2003-02-23 15:24:15 UTC
how about adding this as RDEPEND ?
Comment 2 Luca Barbato gentoo-dev 2003-02-23 19:08:01 UTC
rsync can compile w/out popt installed
bash-2.05b# emerge -C popt && emerge ">=rsync-0.0.1"
bash-2.05b# ldd `which rsync`
        libresolv.so.2 => /lib/libresolv.so.2 (0x4001b000)
        libc.so.6 => /lib/libc.so.6 (0x41156000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x41000000)
but can also link against external popt
bash-2.05b# emerge popt && emerge ">=rsync-0.0.1"
bash-2.05b# ldd `which rsync`
        libpopt.so.0 => /usr/lib/libpopt.so.0 (0x4001b000)
        libresolv.so.2 => /lib/libresolv.so.2 (0x40023000)
        libc.so.6 => /lib/libc.so.6 (0x41156000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x41000000)
I'm thinking if is better maybe have the popt dependency (in DEPEND) dependent on the build useflag as seems that the src_compile is already doing.



Comment 3 Luca Barbato gentoo-dev 2003-02-23 20:03:31 UTC
committed the changes