svn commit: r450234 - head/emulators/rpcs3

Jan Beich jbeich at FreeBSD.org
Wed Sep 20 21:10:02 UTC 2017


Author: jbeich
Date: Wed Sep 20 21:10:00 2017
New Revision: 450234
URL: https://svnweb.freebsd.org/changeset/ports/450234

Log:
  emulators/rpcs3: don't embed default RPATH
  
  $ readelf -d $(which rpcs3) | fgrep PATH
   0x000000000000000f (RPATH)              Library rpath: [/usr/local/lib:/usr/local/lib/qt5]
   0x000000000000001d (RUNPATH)            Library runpath: [/usr/local/lib:/usr/local/lib/qt5]
  
  Obtained from:	AUR

Modified:
  head/emulators/rpcs3/Makefile   (contents, props changed)

Modified: head/emulators/rpcs3/Makefile
==============================================================================
--- head/emulators/rpcs3/Makefile	Wed Sep 20 21:03:24 2017	(r450233)
+++ head/emulators/rpcs3/Makefile	Wed Sep 20 21:10:00 2017	(r450234)
@@ -38,7 +38,7 @@ USE_QT5=	qmake_build buildtools_build core dbus gui wi
 USE_XORG=	x11
 EXTRA_PATCHES+=	${EXTRA_PATCHES_${OPSYS}_${OSREL}}
 EXTRA_PATCHES_FreeBSD_10.3=	${PATCHDIR}/extra-patch-no-thread_local
-CMAKE_ARGS+=	-DUSE_SYSTEM_LIBPNG=on -DUSE_SYSTEM_FFMPEG=on
+CMAKE_ARGS+=	-DCMAKE_SKIP_RPATH=on -DUSE_SYSTEM_LIBPNG=on -DUSE_SYSTEM_FFMPEG=on
 CXXFLAGS+=	-D_GLIBCXX_USE_C99 # XXX ports/193528
 CXXFLAGS+=	-Wno-macro-redefined # __STDC_*_MACROS sys/cdefs.h vs. llvm-config
 LDFLAGS+=	-Wl,--as-needed # GLU


More information about the svn-ports-all mailing list