svn commit: r504165 - head/graphics/gimp-app

Piotr Kubaj pkubaj at FreeBSD.org
Fri Jun 14 07:10:50 UTC 2019


Author: pkubaj
Date: Fri Jun 14 07:10:48 2019
New Revision: 504165
URL: https://svnweb.freebsd.org/changeset/ports/504165

Log:
  graphics/gimp-app: fix build on architectures other than aarch64, amd64, i386
  
  libunwind is not available on those.
  
  PR:		238071
  Approved by:	mat (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20614

Modified:
  head/graphics/gimp-app/Makefile

Modified: head/graphics/gimp-app/Makefile
==============================================================================
--- head/graphics/gimp-app/Makefile	Fri Jun 14 07:03:37 2019	(r504164)
+++ head/graphics/gimp-app/Makefile	Fri Jun 14 07:10:48 2019	(r504165)
@@ -36,7 +36,11 @@ RUN_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/iso-codes.
 		mypaint-brushes>0:graphics/mypaint-brushes
 
 LIB_DEPENDS+=	libjson-glib-1.0.so:devel/json-glib \
-		libunwind.so:devel/libunwind
+		${LIB_DEPENDS_${ARCH}}
+
+LIB_DEPENDS_aarch64=	libunwind.so:devel/libunwind
+LIB_DEPENDS_amd64=	libunwind.so:devel/libunwind
+LIB_DEPENDS_i386=	libunwind.so:devel/libunwind
 
 GNU_CONFIGURE=	yes
 USES+=		compiler:c++14-lang cpe gettext gmake gnome jpeg libtool \


More information about the svn-ports-all mailing list