From owner-svn-ports-head@FreeBSD.ORG Wed Jan 21 11:06:10 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 941EE2CC; Wed, 21 Jan 2015 11:06:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 6CCDBE9C; Wed, 21 Jan 2015 11:06:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0LB6A8U036236; Wed, 21 Jan 2015 11:06:10 GMT (envelope-from vg@FreeBSD.org) Received: (from vg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0LB69vZ036227; Wed, 21 Jan 2015 11:06:09 GMT (envelope-from vg@FreeBSD.org) Message-Id: <201501211106.t0LB69vZ036227@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vg set sender to vg@FreeBSD.org using -f From: Veniamin Gvozdikov Date: Wed, 21 Jan 2015 11:06:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377585 - in head/x11: . rofi X-SVN-Group: ports-head 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.18-1 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: Wed, 21 Jan 2015 11:06:10 -0000 Author: vg Date: Wed Jan 21 11:06:08 2015 New Revision: 377585 URL: https://svnweb.freebsd.org/changeset/ports/377585 QAT: https://qat.redports.org/buildarchive/r377585/ Log: 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 Added: head/x11/rofi/ head/x11/rofi/Makefile (contents, props changed) head/x11/rofi/distinfo (contents, props changed) head/x11/rofi/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Wed Jan 21 10:38:38 2015 (r377584) +++ head/x11/Makefile Wed Jan 21 11:06:08 2015 (r377585) @@ -240,6 +240,7 @@ SUBDIR += renderproto SUBDIR += resourceproto SUBDIR += rgb + SUBDIR += rofi SUBDIR += rox-wallpaper SUBDIR += roxbg SUBDIR += roxterm Added: head/x11/rofi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/rofi/Makefile Wed Jan 21 11:06:08 2015 (r377585) @@ -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 Added: head/x11/rofi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/rofi/distinfo Wed Jan 21 11:06:08 2015 (r377585) @@ -0,0 +1,2 @@ +SHA256 (rofi-0.14.12.tar.gz) = 7298098b8d49a5922e3f9cf9154c12f93be3249adba0475d47ff1a4e96ad859f +SIZE (rofi-0.14.12.tar.gz) = 52356 Added: head/x11/rofi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/rofi/pkg-descr Wed Jan 21 11:06:08 2015 (r377585) @@ -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/