Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Mar 2019 07:24:49 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r496316 - head/Mk/Uses
Message-ID:  <201903200724.x2K7Onpw098844@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903200724.x2K7Onpw098844>