svn commit: r489867 - head/devel/anjuta

Tobias Kortkamp tobik at FreeBSD.org
Thu Jan 10 16:06:29 UTC 2019


Author: tobik
Date: Thu Jan 10 16:06:28 2019
New Revision: 489867
URL: https://svnweb.freebsd.org/changeset/ports/489867

Log:
  devel/anjuta: Fix build of SVN plugin when /usr/bin/svn exists on the system
  
  The SVN plugin is never built and packaging anjuta fails.  It links
  with libsvn_client-1.so but the dependency is not properly declared.
  
  A check for just 'svn' is not enough since the base system does not
  provide subversion libraries.  Change it to always use the libraries
  from devel/subversion.
  
  PR:		223046
  Submitted by:	tobik
  Reported by:	ohartmann at walstatt.org
  Approved by:	gnome (maintainer timeout, 2 weeks)

Modified:
  head/devel/anjuta/Makefile

Modified: head/devel/anjuta/Makefile
==============================================================================
--- head/devel/anjuta/Makefile	Thu Jan 10 15:45:34 2019	(r489866)
+++ head/devel/anjuta/Makefile	Thu Jan 10 16:06:28 2019	(r489867)
@@ -3,6 +3,7 @@
 
 PORTNAME=	anjuta
 PORTVERSION=	3.28.0
+PORTREVISION=	1
 CATEGORIES=	devel gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome3
@@ -93,10 +94,9 @@ TERMINAL_LIB_DEPENDS=	libgnutls.so:security/gnutls \
 			libpcre2-8.so:devel/pcre2
 TERMINAL_VARS=		GLIB_SCHEMAS+=org.gnome.anjuta.terminal.gschema.xml
 
-SVN_BUILD_DEPENDS=	svn:devel/subversion
 SVN_LIB_DEPENDS=	libapr-1.so:devel/apr1 \
-			libserf-1.so:www/serf
-SVN_RUN_DEPENDS=	svn:devel/subversion
+			libserf-1.so:www/serf \
+			libsvn_client-1.so:devel/subversion
 SVN_CONFIGURE_ENABLE=	plugin-subversion
 
 DEVHELP_LIB_DEPENDS=	libsoup-2.4.so:devel/libsoup \


More information about the svn-ports-all mailing list