svn commit: r496316 - head/Mk/Uses

Tobias C. Berner tcberner at FreeBSD.org
Wed Mar 20 07:24:50 UTC 2019


Author: tcberner
Date: Wed Mar 20 07:24:49 2019
New Revision: 496316
URL: https://svnweb.freebsd.org/changeset/ports/496316

Log:
  kde.mk: fix handling of versioned components
  
  When prefixing the components in r496296 the versioned components where neglected,
  which lead to for example the 'baloo' component no longer being defined properly.
  
  Reported by:	antoine

Modified:
  head/Mk/Uses/kde.mk

Modified: head/Mk/Uses/kde.mk
==============================================================================
--- head/Mk/Uses/kde.mk	Wed Mar 20 07:02:30 2019	(r496315)
+++ head/Mk/Uses/kde.mk	Wed Mar 20 07:24:49 2019	(r496316)
@@ -806,12 +806,12 @@ kde-okular5_LIB=		libOkular5Core.so
 
 # ====================== select the proper multiversion component ==============
 .    for comp in ${_USE_KDE_BOTH}
-${comp}_PORT=		${${comp}${_KDE_VERSION}_PORT}
-.      if defined(${comp}${_KDE_VERSION}_LIB)
-${comp}_LIB=		${${comp}${_KDE_VERSION}_LIB}
+kde-${comp}_PORT=		${kde-${comp}${_KDE_VERSION}_PORT}
+.      if defined(kde-${comp}${_KDE_VERSION}_LIB)
+kde-${comp}_LIB=		${kde-${comp}${_KDE_VERSION}_LIB}
 .      else
-.        if defined(${comp}${_KDE_VERSION}_PATH})
-${comp}_PATH=		${${comp}${_KDE_VERSION}_LIB}
+.        if defined(kde-${comp}${_KDE_VERSION}_PATH})
+kde-${comp}_PATH=		${kde-${comp}${_KDE_VERSION}_LIB}
 .        endif
 # If neither is defined, this gets caught below when checking components
 .      endif


More information about the svn-ports-all mailing list