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

(-)Mk/bsd.port.mk (-11 / +17 lines)
Lines 978-993 Link Here
978
.endif
978
.endif
979
979
980
980
981
# Start of pre-makefile section.
981
# Start of options section
982
.if !defined(AFTERPORTMK)
982
.if defined(INOPTIONSMK) || ( !defined(USEOPTIONSMK) && !defined(AFTERMKPORT) )
983
984
.if defined(_PREMKINCLUDED)
985
check-makefile::
986
	@${ECHO_CMD} "${PKGNAME}: Makefile error: you cannot include bsd.port[.pre].mk twice"
987
	@${FALSE}
988
.endif
989
990
_PREMKINCLUDED=	yes
991
983
992
.if defined(MAKE_VERSION)
984
.if defined(MAKE_VERSION)
993
.if ${MAKE_VERSION} >= 5200408030 || ${MAKE_VERSION} >= 4200408030 && ${MAKE_VERSION} < 5000000000
985
.if ${MAKE_VERSION} >= 5200408030 || ${MAKE_VERSION} >= 4200408030 && ${MAKE_VERSION} < 5000000000
Lines 1180-1185 Link Here
1180
.	endif
1172
.	endif
1181
.endif
1173
.endif
1182
1174
1175
.endif
1176
1177
1178
# Start of pre-makefile section.
1179
.if !defined(AFTERPORTMK) && !defined(INOPTIONSMK)
1180
1181
.if defined(_PREMKINCLUDED)
1182
check-makefile::
1183
	@${ECHO_CMD} "${PKGNAME}: Makefile error: you cannot include bsd.port[.pre].mk twice"
1184
	@${FALSE}
1185
.endif
1186
1187
_PREMKINCLUDED=	yes
1188
1183
# check for old, crufty, makefile types, part 1:
1189
# check for old, crufty, makefile types, part 1:
1184
.if !defined(PORTNAME) || !( defined(PORTVERSION) || defined (DISTVERSION) ) || defined(PKGNAME)
1190
.if !defined(PORTNAME) || !( defined(PORTVERSION) || defined (DISTVERSION) ) || defined(PKGNAME)
1185
check-makefile::
1191
check-makefile::
Lines 1425-1431 Link Here
1425
# End of pre-makefile section.
1431
# End of pre-makefile section.
1426
1432
1427
# Start of post-makefile section.
1433
# Start of post-makefile section.
1428
.if !defined(BEFOREPORTMK)
1434
.if !defined(BEFOREPORTMK) && !defined(INOPTIONSMK)
1429
1435
1430
.if defined(_POSTMKINCLUDED)
1436
.if defined(_POSTMKINCLUDED)
1431
check-makefile::
1437
check-makefile::
(-)Mk/bsd.port.options.mk (+8 lines)
Line 0 Link Here
1
# $FreeBSD: ports/Mk/bsd.port.pre.mk,v 1.3 1999/08/25 04:40:21 obrien Exp $
2
3
USEOPTIONSMK=	yes
4
INOPTIONSMK=	yes
5
6
.include "bsd.port.mk"
7
8
.undef INOPTIONSMK

Return to bug 93687