From owner-svn-ports-all@freebsd.org Thu Jan 10 16:06:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45EEF14909B6; Thu, 10 Jan 2019 16:06:29 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DF72689FDA; Thu, 10 Jan 2019 16:06:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D1D40674A; Thu, 10 Jan 2019 16:06:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0AG6S3o087116; Thu, 10 Jan 2019 16:06:28 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0AG6So9087115; Thu, 10 Jan 2019 16:06:28 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201901101606.x0AG6So9087115@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 10 Jan 2019 16:06:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489867 - head/devel/anjuta X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/devel/anjuta X-SVN-Commit-Revision: 489867 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DF72689FDA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.998,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2019 16:06:29 -0000 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 \