1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

Mk/bsd.port.mk: fix indentations

Reminder: please use the provdied hooks when working in Mk.
This commit is contained in:
Tobias C. Berner 2022-06-15 23:33:08 +02:00
parent 781943db1d
commit 5b1a3b218f

View File

@ -2204,11 +2204,11 @@ PKG_SUFX= .pkg
. if defined(PKG_NOCOMPRESS)
PKG_COMPRESSION_FORMAT?= tar
. else
.if ${OSVERSION} > 1400000
. if ${OSVERSION} > 1400000
PKG_COMPRESSION_FORMAT?= tzst
.else
. else
PKG_COMPRESSION_FORMAT?= txz
.endif
. endif
. endif
# where pkg(8) stores its data
@ -2609,12 +2609,12 @@ WRKDIR_PKGFILE= ${WRKDIR}/pkg/${PKGNAME}${PKG_SUFX}
PKGLATESTREPOSITORY?= ${PACKAGES}/Latest
PKGBASE?= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}
PKGLATESTFILE= ${PKGLATESTREPOSITORY}/${PKGBASE}${PKG_SUFX}
.if ${PKG_COMPRESSION_FORMAT} == txz
. if ${PKG_COMPRESSION_FORMAT} == txz
PKGOLDLATESTFILE= ${PKGLATESTREPOSITORY}/${PKGBASE}.${PKG_COMPRESSION_FORMAT}
# Temporary workaround to be deleted once every supported version of FreeBSD
# have a bootstrap which handles the pkg extension.
PKGOLDSIGFILE= ${PKGLATESTREPOSITORY}/${PKGBASE}.${PKG_COMPRESSION_FORMAT}.sig
.endif
. endif
CONFIGURE_SCRIPT?= configure
CONFIGURE_CMD?= ./${CONFIGURE_SCRIPT}
@ -2790,13 +2790,13 @@ IGNORE+= (reason: ${NOT_FOR_ARCHS_REASON})
# Check the user interaction and legal issues
. if !defined(NO_IGNORE)
.for v in ${OSREL} ${OSREL:R}
.for f in ${FLAVOR}
.if defined($f_IGNORE_${OPSYS}_${v})
. for v in ${OSREL} ${OSREL:R}
. for f in ${FLAVOR}
. if defined($f_IGNORE_${OPSYS}_${v})
IGNORE+= "${${f}_IGNORE_${OPSYS}_${v}}"
.endif
.endfor
.endfor
. endif
. endfor
. endfor
. if (defined(IS_INTERACTIVE) && defined(BATCH))
IGNORE= is an interactive port
. elif (!defined(IS_INTERACTIVE) && defined(INTERACTIVE))