diff options
author | will <will@FreeBSD.org> | 2001-03-25 23:22:46 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-03-25 23:22:46 +0000 |
commit | ef8056711cd0bdafde7b19b95734571149033c6d (patch) | |
tree | ef1bba3331ac1a06311e71d354d8483edc8d4e06 /Mk/bsd.kde.mk | |
parent | 6396ac698d244fb6ea823070223a75ecb9b909c2 (diff) | |
download | FreeBSD-ports-ef8056711cd0bdafde7b19b95734571149033c6d.zip FreeBSD-ports-ef8056711cd0bdafde7b19b95734571149033c6d.tar.gz |
Fix variable usage and comments.
Submitted by: asami
Diffstat (limited to 'Mk/bsd.kde.mk')
-rw-r--r-- | Mk/bsd.kde.mk | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Mk/bsd.kde.mk b/Mk/bsd.kde.mk index 5981a6e..a45b19c 100644 --- a/Mk/bsd.kde.mk +++ b/Mk/bsd.kde.mk @@ -26,12 +26,12 @@ KDE_MAINTAINER= will@FreeBSD.org # Compat shims. .if defined(USE_QT) -QT_VER= 1 +USE_QT_VER= 1 pre-everything:: @${ECHO} ">>> Warning: this port needs to be updated as it uses the old-style USE_QT variable!" .endif .if defined(USE_QT2) -QT_VER= 2 +USE_QT_VER= 2 pre-everything:: @${ECHO} ">>> Warning: this port needs to be updated as it uses the old-style USE_QT2 variable!" .endif @@ -67,25 +67,25 @@ CONFIGURE_ENV+= MOC="${MOC}" LIBQT="-l${QTNAME}" \ CPPFLAGS="${QTCPPFLAGS}" LIBS="${QTCFGLIBS}" .endif .endif -# End of USE_QT section +# End of USE_QT_VER section -# USE_KDELIBS section +# USE_KDELIBS_VER section .if defined(USE_KDELIBS_VER) # kdelibs 1.x common stuff .if ${USE_KDELIBS_VER} == 1 LIB_DEPENDS+= kdelibs.3:${PORTSDIR}/x11/kdelibs11 -QT_VER= 1 +USE_QT_VER= 1 .else # kdelibs 2.x common stuff -- DEFAULT LIB_DEPENDS+= kdelibs.4:${PORTSDIR}/x11/kdelibs2 -QT_VER= 2 +USE_QT_VER= 2 .endif .endif -# End of USE_KDELIBS section +# End of USE_KDELIBS_VER section # USE_KDEBASE_VER section .if defined(USE_KDEBASE_VER) @@ -93,13 +93,13 @@ QT_VER= 2 # kdebase 1.x common stuff .if ${USE_KDEBASE_VER} == 1 RUN_DEPENDS+= kcontrol:${PORTSDIR}/x11/kdebase11 -USE_KDELIBS= 1 +USE_KDELIBS_VER=1 .else # kdebase 2.x common stuff -- DEFAULT LIB_DEPENDS+= kparts.4:${PORTSDIR}/x11/kdebase2 -USE_KDELIBS= 2 +USE_KDELIBS_VER=2 .endif .endif |