1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 host-extract
: ${_HOST_PATCH_COOKIE}
6 HOST_CONFIG_STYLE?
= ${HOST_STYLE}
10 ${_HOST_CONFIGURE_COOKIE}: ${_HOST_PATCH_COOKIE}
12 ifneq (,$(filter autogen
,${AUTOTOOL_STYLE}))
13 @
$(CMD_TRACE
) "autotooling.. "
14 @cd
${WRKSRC}; env
${HOST_AUTOTOOL_ENV} $(BASH
) autogen.sh
$(MAKE_TRACE
)
16 ifneq (,$(filter autoreconf
,${AUTOTOOL_STYLE}))
17 cd
${WRKSRC}; env
${HOST_AUTOTOOL_ENV} autoreconf
-vif
$(MAKE_TRACE
)
18 @
rm -rf
${WRKSRC}/autom4te.cache
19 @touch
${WRKDIR}/.autoreconf_done
21 @
${MAKE} hostpre-configure
$(MAKE_TRACE
)
22 ifeq (${HOST_CONFIG_STYLE},)
23 @
$(CMD_TRACE
) "configuring.. "
25 env
${HOST_CONFIGURE_ENV} \
26 ${BASH} ${WRKSRC}/${CONFIGURE_PROG} \
27 --prefix=${STAGING_HOST_DIR}/usr \
28 --bindir=${STAGING_HOST_DIR}/usr
/bin \
29 --datadir=${STAGING_HOST_DIR}/usr
/share \
30 --mandir=${STAGING_HOST_DIR}/usr
/share
/man \
31 --libdir=${STAGING_HOST_DIR}/usr
/lib \
32 --libexecdir
=${STAGING_HOST_DIR}/usr
/libexec \
33 --sysconfdir
=${STAGING_HOST_DIR}/etc \
34 ${HOST_CONFIGURE_ARGS} $(MAKE_TRACE
)
36 ifeq (${HOST_CONFIG_STYLE},auto
)
37 @
$(CMD_TRACE
) "configuring.. "
39 env
${HOST_CONFIGURE_ENV} \
40 ${BASH} ${WRKSRC}/${CONFIGURE_PROG} \
45 --datadir=/usr
/share \
46 --mandir=/usr
/share
/man \
48 --libexecdir
=/usr
/libexec \
49 --localstatedir
=/var \
51 --disable-dependency-tracking \
52 --disable-libtool-lock \
54 ${HOST_CONFIGURE_ARGS} $(MAKE_TRACE
)
56 ifeq (${HOST_CONFIG_STYLE},cmake
)
57 @
$(CMD_TRACE
) "configuring cmake.. "
58 cd
${WRKBUILD}; PATH
='${HOST_PATH}' \
59 cmake
-Wno-dev
-DCMAKE_INSTALL_PREFIX
:PATH
=/usr \
60 ${HOST_CMAKE_FLAGS} ${WRKSRC} $(MAKE_TRACE
)
62 ifeq (${HOST_CONFIG_STYLE},perl
)
63 @
$(CMD_TRACE
) "configuring perl module.. "
66 PERL_MM_USE_DEFAULT
=1 \
67 PERL_AUTOINSTALL
=--skipdeps \
69 perl-host Makefile.PL
${HOST_CONFIGURE_ARGS}
71 ifeq (${HOST_CONFIG_STYLE},manual
)
72 @
$(CMD_TRACE
) "configuring.. "
73 ${MAKE} host-configure
$(MAKE_TRACE
)
78 ${_HOST_BUILD_COOKIE}: ${_HOST_CONFIGURE_COOKIE}
79 @
$(CMD_TRACE
) "compiling.. "
80 ifneq (${HOST_STYLE},manual
)
81 cd
${WRKBUILD} && env
${HOST_MAKE_ENV} ${MAKE} -f
${MAKE_FILE} \
82 ${HOST_MAKE_FLAGS} ${HOST_ALL_TARGET} $(MAKE_TRACE
)
84 ${MAKE} host-build
$(MAKE_TRACE
)
87 HOST_INSTALL_STYLE?
= ${HOST_STYLE}
90 host-install
: ${ALL_HOSTINST}
91 ${_HOST_FAKE_COOKIE}: ${_HOST_BUILD_COOKIE}
92 @
$(CMD_TRACE
) "installing.. "
93 @mkdir
-p
${HOST_WRKINST}
94 ifeq (${HOST_INSTALL_STYLE},)
95 cd
${WRKBUILD} && env
${HOST_MAKE_ENV} ${MAKE} -f
${MAKE_FILE} \
96 DESTDIR
='' ${HOST_FAKE_FLAGS} ${HOST_INSTALL_TARGET} $(MAKE_TRACE
)
98 ifeq (${HOST_INSTALL_STYLE},auto
)
99 cd
${WRKBUILD} && env
${HOST_MAKE_ENV} ${MAKE} -f
${MAKE_FILE} \
100 DESTDIR
='${STAGING_HOST_DIR}' ${HOST_FAKE_FLAGS} ${HOST_INSTALL_TARGET} $(MAKE_TRACE
)
102 ifeq (${HOST_INSTALL_STYLE},manual
)
103 env
${HOST_MAKE_ENV} ${MAKE} host-install
$(MAKE_TRACE
)
105 env
${HOST_MAKE_ENV} ${MAKE} hostpost-install
$(MAKE_TRACE
)
106 @find
$(STAGING_HOST_DIR
) -name \
*.la
-exec
rm {} \
;
107 @for a in
$(STAGING_HOST_DIR
)/usr
/bin
/*-config
; do \
108 [[ -e
$$a ]] || continue
; \
109 $(SED
) "s,^prefix=.*,prefix=$(STAGING_HOST_DIR)/usr," $$a; \
110 chmod u
+x
$(STAGING_HOST_DIR
)/usr
/bin
/$$(basename $$a); \
115 exec
${MAKE} hostpackage
117 ifeq ($(HOST_LINUX_ONLY
),)
118 hostpackage
: ${ALL_HOSTDIRS}
119 @touch
${_HOST_COOKIE}
123 @printf
" ---> cleaning host package build directories and files.. "
124 -rm -rf
${STAGING_PKG_DIR}/stamps
/${PKG_NAME}*-host
${WRKDIR}