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

(-)bsd.port.mk (-21 / +5 lines)
Lines 143-149 Link Here
143
#				  because it cannot be manually fetched, etc).  Error
143
#				  because it cannot be manually fetched, etc).  Error
144
#				  logs will not appear on bento, so this should be
144
#				  logs will not appear on bento, so this should be
145
#				  used sparingly.
145
#				  used sparingly.
146
# BROKEN_ELF	- Port doesn't build on ELF machines.
147
# BROKEN		- Port is believed to be broken.  Package builds will
146
# BROKEN		- Port is believed to be broken.  Package builds will
148
#				  still be attempted on the bento package cluster to
147
#				  still be attempted on the bento package cluster to
149
#				  test this assumption.
148
#				  test this assumption.
Lines 336-342 Link Here
336
# USE_X_PREFIX	- Says that the port installs in ${X11BASE}.  Implies USE_XLIB.
335
# USE_X_PREFIX	- Says that the port installs in ${X11BASE}.  Implies USE_XLIB.
337
# USE_XLIB		- Says that the port uses the X libraries.
336
# USE_XLIB		- Says that the port uses the X libraries.
338
#
337
#
339
# USE_DGS		- Says that the port uses the dgs X11 libraries.
340
# USE_FREETYPE	- Says that the port uses the freetype print libraries.
338
# USE_FREETYPE	- Says that the port uses the freetype print libraries.
341
# USE_MESA		- Says that the port uses the Mesa libraries.
339
# USE_MESA		- Says that the port uses the Mesa libraries.
342
# USE_MOTIF		- Says that the port uses the Motif toolkit.  Implies USE_XPM.
340
# USE_MOTIF		- Says that the port uses the Motif toolkit.  Implies USE_XPM.
Lines 366-376 Link Here
366
#				  for more details.
364
#				  for more details.
367
#				  Default: not set.
365
#				  Default: not set.
368
#
366
#
369
# USE_KDEBASE_VER	- Set to either 2 or 3 to use the KDE windowing system.
367
# USE_KDEBASE_VER	- Set to 3 to use the KDE windowing system.
370
#					  (Only 3 is currently supported).  Implies inclusion
368
#					  Implies inclusion
371
#					  of bsd.kde.mk.  Default: not set.
369
#					  of bsd.kde.mk.  Default: not set.
372
# USE_KDELIBS_VER	- Set to either 2 or 3 to use the KDE libraries.
370
# USE_KDELIBS_VER	- Set to 3 to use the KDE libraries.
373
#					  (Only 3 is currently supported).  Implies inclusion
371
#					  Implies inclusion
374
#					  of bsd.kde.mk.  Default: not set.
372
#					  of bsd.kde.mk.  Default: not set.
375
# USE_QT_VER		- Set to either 2 or 3 to use the QT libraries.
373
# USE_QT_VER		- Set to either 2 or 3 to use the QT libraries.
376
#					  (Only 3 is currently supported).  Implies inclusion
374
#					  (Only 3 is currently supported).  Implies inclusion
Lines 1375-1383 Link Here
1375
.if defined(USE_XPM)
1373
.if defined(USE_XPM)
1376
LIB_DEPENDS+=			Xpm.4:${PORTSDIR}/graphics/xpm
1374
LIB_DEPENDS+=			Xpm.4:${PORTSDIR}/graphics/xpm
1377
.endif
1375
.endif
1378
.if defined(USE_DGS)
1379
LIB_DEPENDS+=			dps.0:${PORTSDIR}/x11/dgs
1380
.endif
1381
.if defined(USE_MESA)
1376
.if defined(USE_MESA)
1382
LIB_DEPENDS+=			GL.14:${PORTSDIR}/graphics/Mesa3
1377
LIB_DEPENDS+=			GL.14:${PORTSDIR}/graphics/Mesa3
1383
.endif
1378
.endif
Lines 1388-1394 Link Here
1388
BUILD_DEPENDS+=			${X11BASE}/lib/X11/config/date.def:${PORTSDIR}/devel/imake-4
1383
BUILD_DEPENDS+=			${X11BASE}/lib/X11/config/date.def:${PORTSDIR}/devel/imake-4
1389
RUN_DEPENDS+=			mkhtmlindex:${PORTSDIR}/devel/imake-4
1384
RUN_DEPENDS+=			mkhtmlindex:${PORTSDIR}/devel/imake-4
1390
.endif
1385
.endif
1391
.if defined(USE_XPM) || defined(USE_DGS)
1386
.if defined(USE_XPM)
1392
USE_XLIB=				yes
1387
USE_XLIB=				yes
1393
.endif
1388
.endif
1394
.if defined(USE_MESA)
1389
.if defined(USE_MESA)
Lines 2422-2438 Link Here
2422
IGNORE=	"may not be placed on a CDROM: ${NO_CDROM}"
2417
IGNORE=	"may not be placed on a CDROM: ${NO_CDROM}"
2423
.elif (defined(RESTRICTED) && defined(NO_RESTRICTED))
2418
.elif (defined(RESTRICTED) && defined(NO_RESTRICTED))
2424
IGNORE=	"is restricted: ${RESTRICTED}"
2419
IGNORE=	"is restricted: ${RESTRICTED}"
2425
.elif defined(NO_WRKDIR)
2426
IGNORE=	"defines NO_WRKDIR, which is obsoleted.  If you are defining NO_WRKDIR and NO_EXTRACT, try changing it to NO_WRKSUBDIR=yes and EXTRACT_ONLY= \(the right side intentionally left empty\)"
2427
.elif defined(NO_EXTRACT)
2428
IGNORE=	"defines NO_EXTRACT, which is obsoleted.  Try changing it to EXTRACT_ONLY= \(the right side intentionally left empty\)"
2429
.elif defined(NO_CONFIGURE)
2430
IGNORE=	"defines NO_CONFIGURE, which is obsoleted"
2431
.elif defined(NO_PATCH)
2432
IGNORE=	"defines NO_PATCH, which is obsoleted"
2433
.elif defined(BROKEN_ELF) && (${PORTOBJFORMAT} == "elf") && \
2434
	  !defined(PARALLEL_PACKAGE_BUILD)
2435
IGNORE=	"is broken for ELF: ${BROKEN_ELF}"
2436
.elif defined(BROKEN)
2420
.elif defined(BROKEN)
2437
.if defined(PARALLEL_PACKAGE_BUILD)
2421
.if defined(PARALLEL_PACKAGE_BUILD)
2438
# try building even if marked BROKEN
2422
# try building even if marked BROKEN

Return to bug 54782