View | Details | Raw Unified | Return to bug 104009
Collapse All | Expand All

(-)bsd.port.mk (-8 / +10 lines)
Lines 218-224 Link Here
218
# NOT_FOR_ARCHS_REASON
218
# NOT_FOR_ARCHS_REASON
219
# NOT_FOR_ARCHS_REASON_${ARCH}
219
# NOT_FOR_ARCHS_REASON_${ARCH}
220
#				- Reason why it's not for ${NOT_FOR_ARCHS}s
220
#				- Reason why it's not for ${NOT_FOR_ARCHS}s
221
# IA32_BINARY_PORT	- Set this instead of ONLY_FOR_ARCHS if the given port
221
# IA32_BINARY_PORT
222
#				- Set this instead of ONLY_FOR_ARCHS if the given port
222
#				  fetches and installs compiled i386 binaries.
223
#				  fetches and installs compiled i386 binaries.
223
#
224
#
224
# Dependency checking.  Use these if your port requires another port
225
# Dependency checking.  Use these if your port requires another port
Lines 405-411 Link Here
405
#				  (libtool, autoconf, autoheader, automake et al.)
406
#				  (libtool, autoconf, autoheader, automake et al.)
406
#				  See bsd.autotools.mk for more details.
407
#				  See bsd.autotools.mk for more details.
407
##
408
##
408
# USE_SCONS - If set, this port uses the Python-based SCons build system
409
# USE_SCONS		- If set, this port uses the Python-based SCons build system
409
#				  See bsd.scons.mk for more details.
410
#				  See bsd.scons.mk for more details.
410
##
411
##
411
# USE_JAVA		- If set, this port relies on the Java language.
412
# USE_JAVA		- If set, this port relies on the Java language.
Lines 531-537 Link Here
531
#				  ${LINUXBASE_REL} if  USE_LINUX_PREFIX is set,
532
#				  ${LINUXBASE_REL} if  USE_LINUX_PREFIX is set,
532
#				  otherwise ${LOCALBASE_REL}
533
#				  otherwise ${LOCALBASE_REL}
533
#
534
#
534
# IGNORE_PATH_CHECKS	- There are some sanity checks against PREFIX and DESTDIR.
535
# IGNORE_PATH_CHECKS
536
#				- There are some sanity checks against PREFIX and DESTDIR.
535
#				  You can diasble these checks with defining
537
#				  You can diasble these checks with defining
536
#				  this variable, but this is not recommended!
538
#				  this variable, but this is not recommended!
537
#				  Only do this if you really know what you are
539
#				  Only do this if you really know what you are
Lines 707-713 Link Here
707
#
709
#
708
# Default sequence for "all" is:
710
# Default sequence for "all" is:
709
#
711
#
710
#     check-sanity fetch checksum extract patch configure build
712
#	  check-sanity fetch checksum extract patch configure build
711
#
713
#
712
# Please read the comments in the targets section below; you
714
# Please read the comments in the targets section below; you
713
# should be able to use the pre-* or post-* targets/scripts
715
# should be able to use the pre-* or post-* targets/scripts
Lines 1627-1635 Link Here
1627
.endif
1629
.endif
1628
1630
1629
.if defined(NOPORTDOCS)
1631
.if defined(NOPORTDOCS)
1630
PLIST_SUB+=	        PORTDOCS="@comment "
1632
PLIST_SUB+=		PORTDOCS="@comment "
1631
.else
1633
.else
1632
PLIST_SUB+=	        PORTDOCS=""
1634
PLIST_SUB+=		PORTDOCS=""
1633
.endif
1635
.endif
1634
1636
1635
CONFIGURE_SHELL?=	${SH}
1637
CONFIGURE_SHELL?=	${SH}
Lines 3038-3048 Link Here
3038
.if defined(ONLY_FOR_ARCHS)
3040
.if defined(ONLY_FOR_ARCHS)
3039
.for __ARCH in ${ONLY_FOR_ARCHS}
3041
.for __ARCH in ${ONLY_FOR_ARCHS}
3040
.if ${ARCH:M${__ARCH}} != ""
3042
.if ${ARCH:M${__ARCH}} != ""
3041
__ARCH_OK?=     1
3043
__ARCH_OK?=		1
3042
.endif
3044
.endif
3043
.endfor
3045
.endfor
3044
.else
3046
.else
3045
__ARCH_OK?=     1
3047
__ARCH_OK?=		1
3046
.endif
3048
.endif
3047
3049
3048
.if defined(NOT_FOR_ARCHS)
3050
.if defined(NOT_FOR_ARCHS)

Return to bug 104009