88166ad6f5
This is from Anton Panev's GSoC 2011 project to add RPM and DPKG support to pkgsrc. (I am not adding that further support in this commit.) This is just a rename of the existing functionality. Now it will be easy to test the GSoC work by simply putting in a single directory (such as "rpm" or "deb"). See http://addpackageforma.sourceforge.net/ for some details. This is from Anton's CVS, but I made some minor changes: - changed plural pkgformats to singular pkgformat (to be consistent) - fixed a few places (in comments) that were missed - catch up on some additions to flavor not in the pkgforma cvs: PKGSRC_SETENV and _flavor-destdir-undo-replace and undo-destdir-replace-install.
74 lines
1.8 KiB
Makefile
74 lines
1.8 KiB
Makefile
# $NetBSD: replace.mk,v 1.14 2011/10/15 00:23:09 reed Exp $
|
|
#
|
|
# Public targets:
|
|
#
|
|
# replace:
|
|
# Updates a package in-place on the system.
|
|
# It will acquire elevated privileges just-in-time.
|
|
#
|
|
# undo-replace:
|
|
# Undoes the effects of a previous "make replace".
|
|
# It will acquire elevated privileges just-in-time.
|
|
#
|
|
#
|
|
# Private targets that must be defined by the package system format:
|
|
#
|
|
# _pkgformat-replace:
|
|
# Updates a package in-place on the system (USE_DESTDIR=no).
|
|
#
|
|
# _pkgformat-destdir-replace:
|
|
# Updates a package in-place on the system (USE_DESTDIR=yes).
|
|
#
|
|
# _pkgformat-undo-replace:
|
|
# Undoes a previous "make _pkgformat-replace".
|
|
|
|
# _pkgformat-destdir-undo-replace:
|
|
# Undoes a previous "make _pkgformat-destdir-replace".
|
|
|
|
.if ${_USE_DESTDIR} == "no"
|
|
_REPLACE_TARGETS+= ${_PKGSRC_BUILD_TARGETS}
|
|
.else
|
|
_REPLACE_TARGETS+= package
|
|
.endif
|
|
_REPLACE_TARGETS+= replace-message
|
|
_REPLACE_TARGETS+= unprivileged-install-hook
|
|
|
|
#
|
|
# replace
|
|
#
|
|
|
|
.PHONY: replace
|
|
.if defined(_PKGSRC_BARRIER)
|
|
replace: ${_REPLACE_TARGETS} su-target
|
|
.else
|
|
replace: barrier
|
|
.endif
|
|
|
|
replace-message: .PHONY
|
|
@${PHASE_MSG} "Replacing for ${PKGNAME}"
|
|
@${WARNING_MSG} "experimental target - DATA LOSS MAY OCCUR."
|
|
|
|
.if ${_USE_DESTDIR} == "no"
|
|
su-replace: .PHONY _pkgformat-replace
|
|
.else
|
|
su-replace: .PHONY _pkgformat-destdir-replace
|
|
.endif
|
|
MAKEFLAGS.su-replace= _UPDATE_RUNNING=yes
|
|
MAKEFLAGS.su-replace+= PKGNAME_REQD=${PKGNAME_REQD:Q}
|
|
|
|
#
|
|
# undo-replace
|
|
#
|
|
|
|
undo-replace: .PHONY undo-replace-message su-target
|
|
|
|
undo-replace-message: .PHONY
|
|
@${PHASE_MSG} "Undoing replacement for ${PKGNAME}"
|
|
@${WARNING_MSG} "experimental target - DATA LOSS MAY OCCUR."
|
|
|
|
.if ${_USE_DESTDIR} == "no"
|
|
su-undo-replace: .PHONY _pkgformat-undo-replace
|
|
.else
|
|
su-undo-replace: .PHONY _pkgformat-destdir-undo-replace
|
|
.endif
|
|
MAKEFLAGS.su-undo-replace= _UPDATE_RUNNING=yes
|