diff options
author | vg <vg@FreeBSD.org> | 2015-01-21 19:06:08 +0800 |
---|---|---|
committer | vg <vg@FreeBSD.org> | 2015-01-21 19:06:08 +0800 |
commit | e950c78cb96b2a75cc8c745aa18f39fadc29720e (patch) | |
tree | 963ea74f12ce83c98c12e2fe33dafa9edb76d5b9 /x11/rofi | |
parent | 802d0a7aa2823ef7b19f9e70c874d5288b155184 (diff) | |
download | freebsd-ports-gnome-e950c78cb96b2a75cc8c745aa18f39fadc29720e.tar.gz freebsd-ports-gnome-e950c78cb96b2a75cc8c745aa18f39fadc29720e.tar.zst freebsd-ports-gnome-e950c78cb96b2a75cc8c745aa18f39fadc29720e.zip |
New port: x11/rofi
A popup window switcher roughly based on superswitcher, requiring only xlib
and pango. This version started off as a clone of simpleswitcher, the
version from Sean Pringle. All credit for this great tool should go to him.
Rofi developed extra features, like a run-dialog, ssh-launcher and can
act as a drop-in dmenu replacement, making it a very versatile tool.
WWW: https://davedavenport.github.io/rofi/
PR: ports/195146
Submitted by: nomoo@nomoo.ru
Diffstat (limited to 'x11/rofi')
-rw-r--r-- | x11/rofi/Makefile | 25 | ||||
-rw-r--r-- | x11/rofi/distinfo | 2 | ||||
-rw-r--r-- | x11/rofi/pkg-descr | 7 |
3 files changed, 34 insertions, 0 deletions
diff --git a/x11/rofi/Makefile b/x11/rofi/Makefile new file mode 100644 index 000000000000..43c6e45e9504 --- /dev/null +++ b/x11/rofi/Makefile @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= rofi +PORTVERSION= 0.14.12 +CATEGORIES= x11 +MASTER_SITES= GH GHC + +MAINTAINER= nomoo@nomoo.ru +COMMENT= Window switcher, run dialog and dmenu replacement + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= DaveDavenport +GH_COMMIT= 9b33197 +GH_TAGNAME= 0.14.12 + +GNU_CONFIGURE= yes +USES= autoreconf pkgconfig +USE_XORG= x11 xinerama +USE_GNOME= pango + +PLIST_FILES= bin/rofi man/man1/rofi.1.gz + +.include <bsd.port.mk> diff --git a/x11/rofi/distinfo b/x11/rofi/distinfo new file mode 100644 index 000000000000..ec2b4c035f15 --- /dev/null +++ b/x11/rofi/distinfo @@ -0,0 +1,2 @@ +SHA256 (rofi-0.14.12.tar.gz) = 7298098b8d49a5922e3f9cf9154c12f93be3249adba0475d47ff1a4e96ad859f +SIZE (rofi-0.14.12.tar.gz) = 52356 diff --git a/x11/rofi/pkg-descr b/x11/rofi/pkg-descr new file mode 100644 index 000000000000..0abc092b19cb --- /dev/null +++ b/x11/rofi/pkg-descr @@ -0,0 +1,7 @@ +A popup window switcher roughly based on superswitcher, requiring only xlib +and pango. This version started off as a clone of simpleswitcher, the +version from Sean Pringle. All credit for this great tool should go to him. +Rofi developed extra features, like a run-dialog, ssh-launcher and can +act as a drop-in dmenu replacement, making it a very versatile tool. + +WWW: https://davedavenport.github.io/rofi/ |