From owner-svn-ports-all@FreeBSD.ORG Wed Dec 31 11:32:52 2014 Return-Path: Delivered-To: svn-ports-all@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 8DBA6EDB; Wed, 31 Dec 2014 11:32:52 +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 6059964CC4; Wed, 31 Dec 2014 11:32:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBVBWq3K091448; Wed, 31 Dec 2014 11:32:52 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBVBWpS5091444; Wed, 31 Dec 2014 11:32:51 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201412311132.sBVBWpS5091444@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 31 Dec 2014 11:32:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375877 - in head/x11: . slop X-SVN-Group: ports-head 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.18-1 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, 31 Dec 2014 11:32:52 -0000 Author: pawel Date: Wed Dec 31 11:32:50 2014 New Revision: 375877 URL: https://svnweb.freebsd.org/changeset/ports/375877 QAT: https://qat.redports.org/buildarchive/r375877/ Log: slop (Select Operation) is an application that collects a screen selection from the user and prints the selection's coordinates to stdout. WWW: http://www.github.com/naelstrof/slop PR: 195199 Submitted by: Neel Chauhan Added: head/x11/slop/ head/x11/slop/Makefile (contents, props changed) head/x11/slop/distinfo (contents, props changed) head/x11/slop/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Wed Dec 31 11:29:58 2014 (r375876) +++ head/x11/Makefile Wed Dec 31 11:32:50 2014 (r375877) @@ -260,6 +260,7 @@ SUBDIR += sisctrl SUBDIR += slim SUBDIR += slock + SUBDIR += slop SUBDIR += smproxy SUBDIR += sselp SUBDIR += stalonetray Added: head/x11/slop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/slop/Makefile Wed Dec 31 11:32:50 2014 (r375877) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= slop +PORTVERSION= 4.1.15 +CATEGORIES= x11 + +MAINTAINER= neel@neelc.org +COMMENT= Make a screen selection and print the selection coordinates to stdout + +LICENSE= GPLv3 + +USE_GITHUB= yes +GH_ACCOUNT= naelstrof +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= cbc1856 + +USES= cmake +USE_XORG= x11 xext +PLIST_FILES= bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/slop ${STAGEDIR}${PREFIX}/bin + +.include Added: head/x11/slop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/slop/distinfo Wed Dec 31 11:32:50 2014 (r375877) @@ -0,0 +1,2 @@ +SHA256 (slop-4.1.15.tar.gz) = fd7c1a7564c228a0a78954559bfd6b0f1f55730e6461891900dd7912e2eaf9b8 +SIZE (slop-4.1.15.tar.gz) = 35302 Added: head/x11/slop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/slop/pkg-descr Wed Dec 31 11:32:50 2014 (r375877) @@ -0,0 +1,4 @@ +slop (Select Operation) is an application that collects a screen selection +from the user and prints the selection's coordinates to stdout. + +WWW: http://www.github.com/naelstrof/slop