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

(-)bsd.port.mk (-6 / +11 lines)
Lines 452-465 Link Here
452
# USE_KDELIBS_VER		- Set to 3 to use the KDE libraries.
452
# USE_KDELIBS_VER		- Set to 3 to use the KDE libraries.
453
#				  Implies inclusion of bsd.kde.mk.
453
#				  Implies inclusion of bsd.kde.mk.
454
#
454
#
455
# USE_KDE4			- A list of the KDE4 dependencies the port has (e.g.,
455
# USE_KDE4		- A list of the KDE4 dependencies the port has (e.g.,
456
#				  kdelibs, kdebase).  Implies that the port needs KDE.
456
#				  kdelibs, kdebase).  Implies that the port needs KDE.
457
#				  Implies inclusion of bsd.kde4.mk.  See bsd.kde4.mk
457
#				  Implies inclusion of bsd.kde4.mk.  See bsd.kde4.mk
458
#				  for more details.
458
#				  for more details.
459
#
459
#
460
# USE_QT_VER			- Set to 3 or 4 to use the respective version
460
# USE_QT_VER	- Set to 3 or 4 to use the respective version
461
#				  of the QT libraries.
461
#				  of the Qt libraries.
462
#				  Implies inclusion of bsd.kde.mk.
462
#				  Implies inclusion of bsd.kde.mk or bsd.qt.mk.
463
#
464
# USE_QT4		- A list of the QT4 dependencies the port has (e.g,
465
#				  corelib, webkit).  Implies that the port needs Qt.
466
#				  Implies the inclusion of bsd.qt.mk.  See bsd.qt.mk
467
#				  for more details.
463
#
468
#
464
# USE_LINUX		- Set to yes to say the port needs the default linux base port.
469
# USE_LINUX		- Set to yes to say the port needs the default linux base port.
465
#				  Set to value <X>, if the port needs emulators/linux_base-<X>.
470
#				  Set to value <X>, if the port needs emulators/linux_base-<X>.
Lines 1466-1472 Link Here
1466
.include "${PORTSDIR}/Mk/bsd.kde.mk"
1471
.include "${PORTSDIR}/Mk/bsd.kde.mk"
1467
.endif
1472
.endif
1468
1473
1469
.if defined (USE_QT_VER) && ${USE_QT_VER:L} == 4
1474
.if defined(USE_QT_VER) && ${USE_QT_VER:L} == 4 || defined(USE_QT4)
1470
.include "${PORTSDIR}/Mk/bsd.qt.mk"
1475
.include "${PORTSDIR}/Mk/bsd.qt.mk"
1471
.endif
1476
.endif
1472
1477
Lines 2027-2033 Link Here
2027
.include "${PORTSDIR}/Mk/bsd.linux-apps.mk"
2032
.include "${PORTSDIR}/Mk/bsd.linux-apps.mk"
2028
.endif
2033
.endif
2029
2034
2030
.if defined (USE_QT_VER) && ${USE_QT_VER:L} == 4
2035
.if defined(USE_QT_VER) && ${USE_QT_VER:L} == 4 || defined(USE_QT4)
2031
.include "${PORTSDIR}/Mk/bsd.qt.mk"
2036
.include "${PORTSDIR}/Mk/bsd.qt.mk"
2032
.endif
2037
.endif

Return to bug 165952