From owner-svn-ports-all@freebsd.org Wed Jan 3 15:11:13 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F302E81B52; Wed, 3 Jan 2018 15:11:13 +0000 (UTC) (envelope-from danfe@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 mx1.freebsd.org (Postfix) with ESMTPS id 0992277625; Wed, 3 Jan 2018 15:11:12 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w03FBCCc016913; Wed, 3 Jan 2018 15:11:12 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w03FBCj5016912; Wed, 3 Jan 2018 15:11:12 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201801031511.w03FBCj5016912@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 3 Jan 2018 15:11:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457969 - head/x11/hsetroot X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/x11/hsetroot X-SVN-Commit-Revision: 457969 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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: Wed, 03 Jan 2018 15:11:13 -0000 Author: danfe Date: Wed Jan 3 15:11:11 2018 New Revision: 457969 URL: https://svnweb.freebsd.org/changeset/ports/457969 Log: Add explicit run-time dependency on `x11/xrandr': the program fails to run when xrandr(1) is not installed: $ hsetroot ... sh: xrandr: not found Modified: head/x11/hsetroot/Makefile Modified: head/x11/hsetroot/Makefile ============================================================================== --- head/x11/hsetroot/Makefile Wed Jan 3 15:02:39 2018 (r457968) +++ head/x11/hsetroot/Makefile Wed Jan 3 15:11:11 2018 (r457969) @@ -3,7 +3,7 @@ PORTNAME= hsetroot PORTVERSION= 1.0.2 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= x11 MAINTAINER= danfe@FreeBSD.org @@ -12,6 +12,7 @@ COMMENT= Wallpaper manipulation utility for X11 LICENSE= GPLv2 LIB_DEPENDS= libImlib2.so:graphics/imlib2 +RUN_DEPENDS= xrandr:x11/xrandr USE_GITHUB= yes GH_ACCOUNT= himdel