Lines 4-10
Link Here
|
4 |
|
4 |
|
5 |
EAPI=5 |
5 |
EAPI=5 |
6 |
|
6 |
|
7 |
inherit versionator multilib |
7 |
inherit versionator |
8 |
|
8 |
|
9 |
MY_PV=$(get_version_component_range 1-3) |
9 |
MY_PV=$(get_version_component_range 1-3) |
10 |
DATE=$(get_version_component_range 4) |
10 |
DATE=$(get_version_component_range 4) |
Lines 53-68
Link Here
|
53 |
|
53 |
|
54 |
src_install() { |
54 |
src_install() { |
55 |
# sad stuff bug #511016 |
55 |
# sad stuff bug #511016 |
56 |
addpredict /$(get_libdir)/libpthread.so.0 |
56 |
local -a O_RDWR=( |
57 |
addpredict /$(get_libdir)/libc.so.6 |
57 |
/lib*/ld-linux-x86-64.so.2 |
58 |
addpredict /$(get_libdir)/ld-linux-x86-64.so.2 |
58 |
|
59 |
addpredict /usr/$(get_libdir)/libpthread_nonshared.a |
59 |
/lib*/libc.so.6 |
60 |
addpredict /usr/$(get_libdir)/libc_nonshared.a |
60 |
/usr/lib*/libc.a /usr/lib*/libc_nonshared.a |
61 |
addpredict /usr/$(get_libdir)/libdl.so |
61 |
/usr/lib*/libdl.a /usr/lib*/libdl.so |
62 |
addpredict /usr/$(get_libdir)/libm.so |
62 |
/usr/lib*/libm.a /usr/lib*/libm.so |
63 |
addpredict /usr/$(get_libdir)/crti.o |
63 |
|
64 |
addpredict /usr/$(get_libdir)/crt1.o |
64 |
/lib*/libpthread.so.0 |
65 |
addpredict /usr/$(get_libdir)/crtn.o |
65 |
/usr/lib*/libpthread.a |
|
|
66 |
/usr/lib*/libpthread_nonshared.a |
67 |
|
68 |
/usr/lib*/crt1.o |
69 |
/usr/lib*/crti.o |
70 |
/usr/lib*/crtn.o |
71 |
) |
72 |
|
73 |
for f in "${O_RDWR[@]}" ; do |
74 |
addpredict "${f}" |
75 |
done |
66 |
|
76 |
|
67 |
# You must paxmark -m EI_PAX (not PT_PAX) to run the installer |
77 |
# You must paxmark -m EI_PAX (not PT_PAX) to run the installer |
68 |
# on a pax enabled kernel. Adding PT_PAX breaks the binary. |
78 |
# on a pax enabled kernel. Adding PT_PAX breaks the binary. |