#
#######################################################################
-windows_setup_dllhelper() {
+winnt_setup_dllhelper() {
case ${CATEGORY}/${PN} in
sys-libs/zlib |\
'')
# and installation is done using cp, we override cp to
# additionally copy the dll when the library is copied.
ebegin "Setting up wrapper to copy the DLL along the LIB"
- windows_setup_dllhelper_cp
+ winnt_setup_dllhelper_cp
eend $?
;;
esac
}
post_src_install() {
+ winnt_post_src_install
+}
+
+winnt_post_src_install() {
cd "${ED}" || return 0
#
# File names being treated as import library:
done
}
-windows_setup_dllhelper_cp() {
+winnt_setup_dllhelper_cp() {
if ! [[ $(type -P cp) -ef ${T}/dllhelper/cp ]]
then
mkdir -p "${T}/dllhelper"
if [[ ${EBUILD_PHASE} == 'setup' ]]
then
- windows_setup_dllhelper
+ winnt_setup_dllhelper
fi