diff options
author | rillig <rillig@pkgsrc.org> | 2006-08-04 07:04:38 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-08-04 07:04:38 +0000 |
commit | 2b12ad4712ae273a5f834efa84c2b98da7a192e3 (patch) | |
tree | 6bfecc2db0a88b476e82ede6b501a36ef86a61cd /mk/install | |
parent | 634ea54e4460523588a80a5567aba6b391066876 (diff) | |
download | pkgsrc-2b12ad4712ae273a5f834efa84c2b98da7a192e3.tar.gz |
Moved the bin-install target from bsd.pkg.mk to install/bin-install.mk.
Added documentation. Added locking around the real installation.
Diffstat (limited to 'mk/install')
-rw-r--r-- | mk/install/bin-install.mk | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/mk/install/bin-install.mk b/mk/install/bin-install.mk new file mode 100644 index 00000000000..e047735d64d --- /dev/null +++ b/mk/install/bin-install.mk @@ -0,0 +1,64 @@ +# $NetBSD: bin-install.mk,v 1.1 2006/08/04 07:04:38 rillig Exp $ +# + +# The bin-install target tries to install a package from a prebuilt +# binary package, and if that doesn't work, builds the package from +# source. +# +# The following variables can be set by the pkgsrc user in mk.conf: +# +# PACKAGES +# This directory is searched before BINPKG_SITES when trying to +# install binary packages. +# +# BINPKG_SITES +# A list of URLs where binary packages can be found. +# See mk/defaults/mk.conf for details. +# + +# List of sites carrying binary pkgs. Variables "rel" and "arch" are +# replaced with OS release ("1.5", ...) and architecture ("mipsel", ...) +BINPKG_SITES?= \ + ftp://ftp.NetBSD.org/pub/NetBSD/packages/$${rel}/$${arch} + +_SU_BIN_INSTALL_TARGETS= acquire-bin-install-lock +_SU_BIN_INSTALL_TARGETS+= locked-su-bin-install +_SU_BIN_INSTALL_TARGETS+= release-bin-install-lock + +.PHONY: acquire-bin-install-lock release-bin-install-lock +acquire-bin-install-lock: acquire-lock +release-bin-install-lock: release-lock + +# Install binary pkg, without strict uptodate-check first +.PHONY: su-bin-install +su-bin-install: ${_SU_BIN_INSTALL_TARGETS} +.ORDER: ${_SU_BIN_INSTALL_TARGETS} + +locked-su-bin-install: + @found=`${PKG_BEST_EXISTS} \"${PKGWILDCARD}\" || ${TRUE}`; \ + if [ "$$found" != "" ]; then \ + ${ERROR_MSG} "$$found is already installed - perhaps an older version?"; \ + ${ERROR_MSG} "If so, you may wish to \`\`pkg_delete $$found'' and install"; \ + ${ERROR_MSG} "this package again by \`\`${MAKE} bin-install'' to upgrade it properly."; \ + exit 1; \ + fi + @rel=${_SHORT_UNAME_R:Q}; \ + arch=${MACHINE_ARCH:Q}; \ + pkgpath=${PKGREPOSITORY:Q}; \ + for i in ${BINPKG_SITES}; do \ + pkgpath="$$pkgpath;$$i/All"; \ + done; \ + ${STEP_MSG} "Installing ${PKGNAME} from $$pkgpath"; \ + if ${SETENV} PKG_PATH="$$pkgpath" ${PKG_ADD} ${_BIN_INSTALL_FLAGS} ${PKGNAME_REQD:U${PKGNAME}:Q}${PKG_SUFX}; then \ + ${ECHO} "`${PKG_INFO} -e ${PKGNAME_REQD:U${PKGNAME}:Q}` successfully installed."; \ + else \ + ${SHCOMMENT} "Cycle through some FTP server here"; \ + ${STEP_MSG} "No binary package found for ${PKGNAME} -- installing from source"; \ + ${RECURSIVE_MAKE} ${MAKEFLAGS} package \ + DEPENDS_TARGET=${DEPENDS_TARGET:Q} \ + && ${RECURSIVE_MAKE} ${MAKEFLAGS} clean; \ + fi + +.PHONY: bin-install +bin-install: su-target + @${PHASE_MSG} "Binary install for "${PKGNAME_REQD:U${PKGNAME}:Q} |