Merge xbps-src code to make it usable in a standalone mode.
The new xbps-src configuration file is `etc/conf` where you can add your local overrides from defaults set via `etc/defaults.conf`. To use this xbps-src, run these steps: $ make $ sudo make setup (to make chroot helper setgid) $ ./xbps-src ...
This commit is contained in:
parent
49e9dc0df8
commit
0b95cb8f5d
20 changed files with 2825 additions and 0 deletions
90
common/xbps-src/libexec/xbps-src-doconfigure.sh
Executable file
90
common/xbps-src/libexec/xbps-src-doconfigure.sh
Executable file
|
@ -0,0 +1,90 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Passed arguments:
|
||||
# $1 - pkgname to configure [REQUIRED]
|
||||
# $2 - cross target [OPTIONAL]
|
||||
|
||||
if [ $# -lt 1 -o $# -gt 2 ]; then
|
||||
echo "$(basename $0): invalid number of arguments: pkgname [cross-target]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
PKGNAME="$1"
|
||||
XBPS_CROSS_BUILD="$2"
|
||||
|
||||
. $XBPS_SHUTILSDIR/common.sh
|
||||
|
||||
for f in $XBPS_COMMONDIR/helpers/*.sh; do
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
setup_pkg "$PKGNAME" $XBPS_CROSS_BUILD
|
||||
|
||||
for f in $XBPS_COMMONDIR/environment/configure/*.sh; do
|
||||
source_file "$f"
|
||||
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
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cd $wrksrc || msg_error "$pkgver: cannot access wrksrc directory [$wrksrc].\n"
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc || \
|
||||
msg_error "$pkgver: cannot access build_wrksrc directory [$build_wrksrc].\n"
|
||||
fi
|
||||
|
||||
run_pkg_hooks pre-configure
|
||||
|
||||
# Run pre_configure()
|
||||
if [ ! -f $XBPS_PRECONFIGURE_DONE ]; then
|
||||
cd $wrksrc
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc
|
||||
fi
|
||||
if declare -f pre_configure >/dev/null; then
|
||||
run_func pre_configure
|
||||
touch -f $XBPS_PRECONFIGURE_DONE
|
||||
fi
|
||||
fi
|
||||
|
||||
# Run do_configure()
|
||||
cd $wrksrc
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc
|
||||
fi
|
||||
if declare -f do_configure >/dev/null; then
|
||||
run_func do_configure
|
||||
else
|
||||
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
|
||||
fi
|
||||
|
||||
touch -f $XBPS_CONFIGURE_DONE
|
||||
|
||||
# Run post_configure()
|
||||
if [ ! -f $XBPS_POSTCONFIGURE_DONE ]; then
|
||||
cd $wrksrc
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc
|
||||
fi
|
||||
if declare -f post_configure >/dev/null; then
|
||||
run_func post_configure
|
||||
touch -f $XBPS_POSTCONFIGURE_DONE
|
||||
fi
|
||||
fi
|
||||
|
||||
run_pkg_hooks post-configure
|
||||
|
||||
exit 0
|
Loading…
Add table
Add a link
Reference in a new issue