mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
Add some comments to sections to disable targets using NO_* variables.
Remove disabling of "repackage", that thing calls package anyway. Submitted by: (mostly) jkh
This commit is contained in:
parent
493c7ec4b9
commit
3e49a1c21b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3152
@ -3,7 +3,7 @@
|
||||
# bsd.port.mk - 940820 Jordan K. Hubbard.
|
||||
# This file is in the public domain.
|
||||
#
|
||||
# $Id: bsd.port.mk,v 1.203 1996/04/27 18:36:02 jkh Exp $
|
||||
# $Id: bsd.port.mk,v 1.204 1996/05/30 08:53:26 asami Exp $
|
||||
#
|
||||
# Please view me with 4 column tabs!
|
||||
|
||||
@ -464,7 +464,6 @@ all:
|
||||
DEPENDS="${DEPENDS}" BUILD_DEPENDS="${BUILD_DEPENDS}" \
|
||||
RUN_DEPENDS="${RUN_DEPENDS}" X11BASE=${X11BASE} \
|
||||
${ALL_HOOK}
|
||||
|
||||
.endif
|
||||
|
||||
.if !target(all)
|
||||
@ -488,6 +487,7 @@ is_depended: ${IS_DEPENDED_TARGET}
|
||||
# override from an individual Makefile.
|
||||
################################################################
|
||||
|
||||
# Disable extract
|
||||
.if defined(NO_EXTRACT) && !target(extract)
|
||||
extract: checksum
|
||||
@${TOUCH} ${TOUCH_FLAGS} ${EXTRACT_COOKIE}
|
||||
@ -496,26 +496,32 @@ checksum: fetch
|
||||
makesum:
|
||||
@${DO_NADA}
|
||||
.endif
|
||||
|
||||
# Disable configure
|
||||
.if defined(NO_CONFIGURE) && !target(configure)
|
||||
configure: patch
|
||||
@${TOUCH} ${TOUCH_FLAGS} ${CONFIGURE_COOKIE}
|
||||
.endif
|
||||
|
||||
# Disable build
|
||||
.if defined(NO_BUILD) && !target(build)
|
||||
build: configure
|
||||
@${TOUCH} ${TOUCH_FLAGS} ${BUILD_COOKIE}
|
||||
.endif
|
||||
|
||||
# Disable package
|
||||
.if defined(NO_PACKAGE) && !target(package)
|
||||
package:
|
||||
@${DO_NADA}
|
||||
.endif
|
||||
.if defined(NO_PACKAGE) && !target(repackage)
|
||||
repackage:
|
||||
@${DO_NADA}
|
||||
.endif
|
||||
|
||||
# Disable install
|
||||
.if defined(NO_INSTALL) && !target(install)
|
||||
install: build
|
||||
@${TOUCH} ${TOUCH_FLAGS} ${INSTALL_COOKIE}
|
||||
.endif
|
||||
|
||||
# Disable patch
|
||||
.if defined(NO_PATCH) && !target(patch)
|
||||
patch: extract
|
||||
@${TOUCH} ${TOUCH_FLAGS} ${PATCH_COOKIE}
|
||||
|
Loading…
Reference in New Issue
Block a user