Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Jan 2019 16:06:28 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r489867 - head/devel/anjuta
Message-ID:  <201901101606.x0AG6So9087115@repo.freebsd.org>

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



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