diff options
author | danfe <danfe@FreeBSD.org> | 2018-01-03 23:11:11 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2018-01-03 23:11:11 +0800 |
commit | 908c946366429e647320f8c9ed3a38371924f755 (patch) | |
tree | c5be06455475cf083d84a48dc7db3c7814f8c5c8 /x11 | |
parent | 7e9dba7eba070d790a19cc0e680c81617c5d9523 (diff) | |
download | freebsd-ports-gnome-908c946366429e647320f8c9ed3a38371924f755.tar.gz freebsd-ports-gnome-908c946366429e647320f8c9ed3a38371924f755.tar.zst freebsd-ports-gnome-908c946366429e647320f8c9ed3a38371924f755.zip |
Add explicit run-time dependency on `x11/xrandr': the program fails to run
when xrandr(1) is not installed:
$ hsetroot ...
sh: xrandr: not found
Diffstat (limited to 'x11')
-rw-r--r-- | x11/hsetroot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11/hsetroot/Makefile b/x11/hsetroot/Makefile index b8ede70de75b..6f230cdc2967 100644 --- a/x11/hsetroot/Makefile +++ b/x11/hsetroot/Makefile @@ -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 |