svn commit: r423237 - head/Mk/Uses

Tobias C. Berner tcberner at FreeBSD.org
Tue Oct 4 06:18:33 UTC 2016


Author: tcberner
Date: Tue Oct  4 06:18:32 2016
New Revision: 423237
URL: https://svnweb.freebsd.org/changeset/ports/423237

Log:
  Teach pathfix.mk about LIB_DESTINATION
  
  Some cmake projects use LIB_DESTINATION/pkgconfig to install the pc-files.
  
  For example:
  * deskutils/libstreamanalyzer
  * sysutils/polkit-qt{,5}
  * x11-toolkits/attica
  
  By adding this, we can convert these ports to use pathfix instead of an
  uncessessary patch-foo or confusing sed call.
  
  Reviewed by:	mat
  Approved by:	portmgr (mat), mat (mentor)
  Differential Revision:	https://reviews.freebsd.org/D8141

Modified:
  head/Mk/Uses/pathfix.mk

Modified: head/Mk/Uses/pathfix.mk
==============================================================================
--- head/Mk/Uses/pathfix.mk	Tue Oct  4 05:59:00 2016	(r423236)
+++ head/Mk/Uses/pathfix.mk	Tue Oct  4 06:18:32 2016	(r423237)
@@ -27,6 +27,7 @@ pathfix:
 		's|[{]CMAKE_INSTALL_LIBDIR[}]/pkgconfig|{CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|g ; \
 		s|[{]INSTALL_LIB_DIR[}]/pkgconfig|{CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|g ; \
 		s|[{]INSTALL_LIBDIR[}]/pkgconfig|{CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|g ; \
+		s|[{]LIB_DESTINATION[}]/pkgconfig|{CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|g ; \
 		s|[{]LIB_DIR[}]/pkgconfig|{CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|g ; \
 		s|[{]LIB_INSTALL_DIR[}]/pkgconfig|{CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|g ; \
 		s|[{]KDE_INSTALL_LIBDIR[}]/pkgconfig|{CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|g ; \


More information about the svn-ports-head mailing list