From owner-svn-ports-all@freebsd.org Thu Aug 1 18:35:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A8F7CC55BE; Thu, 1 Aug 2019 18:35:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 45zzWH40Jyz44pW; Thu, 1 Aug 2019 18:35:39 +0000 (UTC) (envelope-from amdmi3@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 65ED11E739; Thu, 1 Aug 2019 18:35:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x71IZdQW088417; Thu, 1 Aug 2019 18:35:39 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x71IZcm9088414; Thu, 1 Aug 2019 18:35:38 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201908011835.x71IZcm9088414@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 1 Aug 2019 18:35:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r507817 - in head/graphics/scrot: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/graphics/scrot: . files X-SVN-Commit-Revision: 507817 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.29 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: Thu, 01 Aug 2019 18:35:39 -0000 Author: amdmi3 Date: Thu Aug 1 18:35:38 2019 New Revision: 507817 URL: https://svnweb.freebsd.org/changeset/ports/507817 Log: - Update to 1.1.1 PR: 236592 Added: head/graphics/scrot/files/patch-src_Makefile.am (contents, props changed) Deleted: head/graphics/scrot/files/patch-Makefile.in head/graphics/scrot/files/patch-src-Makefile.in Modified: head/graphics/scrot/Makefile head/graphics/scrot/distinfo head/graphics/scrot/pkg-descr Modified: head/graphics/scrot/Makefile ============================================================================== --- head/graphics/scrot/Makefile Thu Aug 1 18:04:09 2019 (r507816) +++ head/graphics/scrot/Makefile Thu Aug 1 18:35:38 2019 (r507817) @@ -2,29 +2,33 @@ # $FreeBSD$ PORTNAME= scrot -DISTVERSIONPREFIX= ${PORTNAME}- -DISTVERSION= 0.8 -PORTREVISION= 8 +DISTVERSION= 1.1.1 CATEGORIES= graphics MAINTAINER= amdmi3@FreeBSD.org -COMMENT= Screen capture utility that utilizes Imlib2 +COMMENT= SCReenshOT - command line screen capture utility LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING +BUILD_DEPENDS= autoconf-archive>=0:devel/autoconf-archive LIB_DEPENDS= libgiblib.so:graphics/giblib \ libImlib2.so:graphics/imlib2 USE_GITHUB= yes -GH_ACCOUNT= dreamer +GH_ACCOUNT= resurrecting-open-source-projects +USES= autoreconf GNU_CONFIGURE= yes -USE_XORG= x11 +USE_XORG= x11 xfixes xcursor PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz -PORTDOCS= * +PORTDOCS= AUTHORS CONTRIBUTING.md ChangeLog README OPTIONS_DEFINE= DOCS + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include Modified: head/graphics/scrot/distinfo ============================================================================== --- head/graphics/scrot/distinfo Thu Aug 1 18:04:09 2019 (r507816) +++ head/graphics/scrot/distinfo Thu Aug 1 18:35:38 2019 (r507817) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526342099 -SHA256 (dreamer-scrot-scrot-0.8_GH0.tar.gz) = ca9156a06b468334e18220040b2984da60136f6a2e0e979f668eda6e3f1e1c05 -SIZE (dreamer-scrot-scrot-0.8_GH0.tar.gz) = 73797 +TIMESTAMP = 1564680518 +SHA256 (resurrecting-open-source-projects-scrot-1.1.1_GH0.tar.gz) = 63bc645d5dfff51e441541dc999379b34722c6428a4cd642e20005e6901383ba +SIZE (resurrecting-open-source-projects-scrot-1.1.1_GH0.tar.gz) = 36473 Added: head/graphics/scrot/files/patch-src_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/scrot/files/patch-src_Makefile.am Thu Aug 1 18:35:38 2019 (r507817) @@ -0,0 +1,15 @@ +--- src/Makefile.am.orig 2019-07-12 02:49:25 UTC ++++ src/Makefile.am +@@ -25,9 +25,9 @@ + + MAINTAINERCLEANFILES = Makefile.in + +-AM_LDFLAGS = -L/usr/X11R6/lib +-AM_CPPFLAGS = -g -O3 -Wall -I/usr/X11R6/include \ +-$(X_CFLAGS) -I$(prefix)/include -I$(includedir) -I. \ ++AM_LDFLAGS = ++AM_CPPFLAGS = \ ++$(X_CFLAGS) -I$(includedir) -I. \ + -DPREFIX=\""$(prefix)"\" @GIBLIB_CFLAGS@ + LIBOBJS = @LIBOBJS@ + Modified: head/graphics/scrot/pkg-descr ============================================================================== --- head/graphics/scrot/pkg-descr Thu Aug 1 18:04:09 2019 (r507816) +++ head/graphics/scrot/pkg-descr Thu Aug 1 18:35:38 2019 (r507817) @@ -1,15 +1,15 @@ -A screen capture CLI utility that utilizes Imlib2. +Scrot (SCReenshOT) is a simple command line screen capture +utility that uses imlib2 to grab and save images. Multiple +image formats are supported through imlib2's dynamic saver +modules. -It has the following set of features: +Some features of the scrot: + - support to multiple image formats (JPG, PNG, GIF, etc.). + - optimization of the screen shots image quality. + - capture a specific window or a rectangular area on the + screen with the help of switch. - - user-definable time delay - - image quality control - - interactive rectangular mouse selection of any screen part - - screen capture for individual windows - - scriptable screen shot processing +scrot also can be used to monitor a desktop PC in admin absent +and register unwanted activities. -Although scrot is no longer in active development, it is still widely used -today. Similar programs, which were either based on or inspired by scrot, are -graphics/maim and x11/slop. - -WWW: https://github.com/dreamer/scrot +WWW: https://github.com/resurrecting-open-source-projects