xspider@ripples spider $ ldd `which nmap` libssl.so.0.9.7 => /usr/lib/libssl.so.0.9.7 (0x40022000) libcrypto.so.0.9.7 => /usr/lib/libcrypto.so.0.9.7 (0x40053000) libpcre.so.0 => not found libstdc++.so.5 => /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.2/libstdc++.so.5 (0x40155000) libm.so.6 => /lib/libm.so.6 (0x4020f000) libgcc_s.so.1 => /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.2/libgcc_s.so.1 (0x40232000) libc.so.6 => /lib/libc.so.6 (0x4023b000) libdl.so.2 => /lib/libdl.so.2 (0x40372000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000) This is bad, it seems to automagically use libpcre if its found when building, this will break GRP sets. Reproducible: Always Steps to Reproduce: 1. 2. 3.
from ./configure --help --with-libpcre=DIR Use an existing (compiled) pcre lib from DIR/include and DIR/lib. Specify --with-libpcre=included to always use the version included with Nmap suggested is that you make the DEPEND & RDEPEND on dev-libs/libpcre
okay, I bumped it and added the dependency. Hope noone feels hurt.