From owner-svn-ports-head@freebsd.org Sun Feb 7 04:46:32 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 06817547A0E; Sun, 7 Feb 2021 04:46:32 +0000 (UTC) (envelope-from bapt@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DYGnz6nhNz3Qqy; Sun, 7 Feb 2021 04:46:31 +0000 (UTC) (envelope-from bapt@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 DBCE01E3F0; Sun, 7 Feb 2021 04:46:31 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 1174kVrW042801; Sun, 7 Feb 2021 04:46:31 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 1174kVR5042800; Sun, 7 Feb 2021 04:46:31 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <202102070446.1174kVR5042800@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 7 Feb 2021 04:46:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r564596 - head/devel/gnome-vfs X-SVN-Group: ports-head X-SVN-Commit-Author: bapt X-SVN-Commit-Paths: head/devel/gnome-vfs X-SVN-Commit-Revision: 564596 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Feb 2021 04:46:32 -0000 Author: bapt Date: Sun Feb 7 04:46:31 2021 New Revision: 564596 URL: https://svnweb.freebsd.org/changeset/ports/564596 Log: Remove the dependency on hal Gnome-vfs is almost unused now, HAL dependency has been dropped almost everywhere Modified: head/devel/gnome-vfs/Makefile Modified: head/devel/gnome-vfs/Makefile ============================================================================== --- head/devel/gnome-vfs/Makefile Sun Feb 7 04:42:24 2021 (r564595) +++ head/devel/gnome-vfs/Makefile Sun Feb 7 04:46:31 2021 (r564596) @@ -3,7 +3,7 @@ PORTNAME= gnome-vfs PORTVERSION= 2.24.4 -PORTREVISION?= 11 +PORTREVISION?= 12 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -30,8 +30,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-openssl \ --disable-gnutls \ --disable-howl \ - --with-hal-mount=/sbin/mount \ - --with-hal-umount=/sbin/umount \ + --disable-hal \ ac_cv_header_sys_inotify_h=no CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib @@ -43,8 +42,8 @@ GCONF_SCHEMAS= desktop_default_applications.schemas \ desktop_gnome_url_handlers.schemas system_dns_sd.schemas \ system_http_proxy.schemas system_smb.schemas -OPTIONS_DEFINE= SAMBA MDNS HAL -OPTIONS_DEFAULT=SAMBA MDNS HAL +OPTIONS_DEFINE= SAMBA MDNS +OPTIONS_DEFAULT=SAMBA MDNS SAMBA_DESC= Enable SMB volume support MDNS_DESC= Enable Bonjour/Rendezvous support @@ -56,13 +55,6 @@ USES+= fam .if exists(${LOCALBASE}/lib/libkrb5.so) LIB_DEPENDS+= libkrb5.so:security/heimdal -.endif - -.if ${PORT_OPTIONS:MHAL} -CONFIGURE_ARGS+=--enable-hal -LIB_DEPENDS+= libhal.so:sysutils/hal -.else -CONFIGURE_ARGS+=--disable-hal .endif .if ${PORT_OPTIONS:MSAMBA}