2014-03-22 12:31:42 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2014-04-09 16:40:27 +02:00
|
|
|
# vim: set ts=4 sw=4 et:
|
|
|
|
#
|
2014-03-22 12:31:42 +01:00
|
|
|
# Passed arguments:
|
|
|
|
# $1 - pkgname to configure [REQUIRED]
|
|
|
|
# $2 - cross target [OPTIONAL]
|
|
|
|
|
|
|
|
if [ $# -lt 1 -o $# -gt 2 ]; then
|
2014-04-09 16:40:27 +02:00
|
|
|
echo "$(basename $0): invalid number of arguments: pkgname [cross-target]"
|
|
|
|
exit 1
|
2014-03-22 12:31:42 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
PKGNAME="$1"
|
|
|
|
XBPS_CROSS_BUILD="$2"
|
|
|
|
|
2014-09-05 11:10:07 +02:00
|
|
|
for f in $XBPS_SHUTILSDIR/*.sh; do
|
|
|
|
. $f
|
|
|
|
done
|
2014-03-22 12:31:42 +01:00
|
|
|
|
|
|
|
setup_pkg "$PKGNAME" $XBPS_CROSS_BUILD
|
|
|
|
|
|
|
|
for f in $XBPS_COMMONDIR/environment/configure/*.sh; do
|
2014-04-09 16:40:27 +02:00
|
|
|
source_file "$f"
|
2014-03-22 12:31:42 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
XBPS_CONFIGURE_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_configure_done"
|
|
|
|
XBPS_PRECONFIGURE_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_pre_configure_done"
|
|
|
|
XBPS_POSTCONFIGURE_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_post_configure_done"
|
|
|
|
|
|
|
|
if [ -f "$XBPS_CONFIGURE_DONE" ]; then
|
2014-04-09 16:40:27 +02:00
|
|
|
exit 0
|
2014-03-22 12:31:42 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
cd $wrksrc || msg_error "$pkgver: cannot access wrksrc directory [$wrksrc].\n"
|
|
|
|
if [ -n "$build_wrksrc" ]; then
|
2014-04-09 16:40:27 +02:00
|
|
|
cd $build_wrksrc || \
|
|
|
|
msg_error "$pkgver: cannot access build_wrksrc directory [$build_wrksrc].\n"
|
2014-03-22 12:31:42 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
run_pkg_hooks pre-configure
|
|
|
|
|
|
|
|
# Run pre_configure()
|
|
|
|
if [ ! -f $XBPS_PRECONFIGURE_DONE ]; then
|
2014-04-09 16:40:27 +02:00
|
|
|
if declare -f pre_configure >/dev/null; then
|
|
|
|
run_func pre_configure
|
|
|
|
touch -f $XBPS_PRECONFIGURE_DONE
|
|
|
|
fi
|
2014-03-22 12:31:42 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Run do_configure()
|
|
|
|
if declare -f do_configure >/dev/null; then
|
2014-04-09 16:40:27 +02:00
|
|
|
run_func do_configure
|
2014-03-22 12:31:42 +01:00
|
|
|
else
|
2014-04-09 16:40:27 +02:00
|
|
|
if [ -n "$build_style" ]; then
|
|
|
|
if [ ! -r $XBPS_BUILDSTYLEDIR/${build_style}.sh ]; then
|
|
|
|
msg_error "$pkgver: cannot find build helper $XBPS_BUILDSTYLEDIR/${build_style}.sh!\n"
|
|
|
|
fi
|
|
|
|
. $XBPS_BUILDSTYLEDIR/${build_style}.sh
|
|
|
|
if declare -f do_configure >/dev/null; then
|
|
|
|
run_func do_configure
|
|
|
|
fi
|
|
|
|
fi
|
2014-03-22 12:31:42 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
touch -f $XBPS_CONFIGURE_DONE
|
|
|
|
|
|
|
|
# Run post_configure()
|
|
|
|
if [ ! -f $XBPS_POSTCONFIGURE_DONE ]; then
|
2014-04-09 16:40:27 +02:00
|
|
|
if declare -f post_configure >/dev/null; then
|
|
|
|
run_func post_configure
|
|
|
|
touch -f $XBPS_POSTCONFIGURE_DONE
|
|
|
|
fi
|
2014-03-22 12:31:42 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
run_pkg_hooks post-configure
|
|
|
|
|
|
|
|
exit 0
|