From owner-svn-ports-all@freebsd.org Mon Jan 1 01:23:17 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 06F1BEB12B4; Mon, 1 Jan 2018 01:23:17 +0000 (UTC) (envelope-from danilo@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 mx1.freebsd.org (Postfix) with ESMTPS id D10EB6C496; Mon, 1 Jan 2018 01:23:16 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w011NFbn052718; Mon, 1 Jan 2018 01:23:15 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w011NFHC052713; Mon, 1 Jan 2018 01:23:15 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201801010123.w011NFHC052713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Mon, 1 Jan 2018 01:23:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457750 - in head/graphics: . p5-Image-Sane X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: in head/graphics: . p5-Image-Sane X-SVN-Commit-Revision: 457750 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.25 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: Mon, 01 Jan 2018 01:23:17 -0000 Author: danilo Date: Mon Jan 1 01:23:15 2018 New Revision: 457750 URL: https://svnweb.freebsd.org/changeset/ports/457750 Log: - New port: graphics/p5-Image-Sane Perl bindings for the SANE (Scanner Access Now Easy) Project. This module allows you to access SANE-compatible scanners in a Perlish and object-oriented way, freeing you from the casting and memory management in C, yet remaining very close in spirit to original API. WWW: http://search.cpan.org/dist/Image-Sane/ It's probably based on the old graphics/p5-Sane (last release in 2012) but under active development. graphics/gscan2pdf switched to this library. Added: head/graphics/p5-Image-Sane/ head/graphics/p5-Image-Sane/Makefile (contents, props changed) head/graphics/p5-Image-Sane/distinfo (contents, props changed) head/graphics/p5-Image-Sane/pkg-descr (contents, props changed) head/graphics/p5-Image-Sane/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Jan 1 00:17:45 2018 (r457749) +++ head/graphics/Makefile Mon Jan 1 01:23:15 2018 (r457750) @@ -728,6 +728,7 @@ SUBDIR += p5-Image-ObjectDetect SUBDIR += p5-Image-PBMlib SUBDIR += p5-Image-Pngslimmer + SUBDIR += p5-Image-Sane SUBDIR += p5-Image-Scale SUBDIR += p5-Image-Size SUBDIR += p5-Image-Size-FillFullSelect Added: head/graphics/p5-Image-Sane/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Image-Sane/Makefile Mon Jan 1 01:23:15 2018 (r457750) @@ -0,0 +1,22 @@ +# Created by: Danilo Egea Gondolfo +# $FreeBSD$ + +PORTNAME= Image-Sane +PORTVERSION= 0.14 +CATEGORIES= graphics perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= danilo@FreeBSD.org +COMMENT= Perl extension for the SANE (Scanner Access Now Easy) Project + +BUILD_DEPENDS= p5-ExtUtils-Depends>=0:devel/p5-ExtUtils-Depends \ + p5-ExtUtils-PkgConfig>=0:devel/p5-ExtUtils-PkgConfig +RUN_DEPENDS= p5-Exception-Class>=1.43:devel/p5-Exception-Class \ + p5-Try-Tiny>=0.28:lang/p5-Try-Tiny +LIB_DEPENDS= libsane.so:graphics/sane-backends + +USES= perl5 +USE_PERL5= configure + +.include Added: head/graphics/p5-Image-Sane/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Image-Sane/distinfo Mon Jan 1 01:23:15 2018 (r457750) @@ -0,0 +1,3 @@ +TIMESTAMP = 1509932609 +SHA256 (Image-Sane-0.14.tar.gz) = a4b027c9b7650291f1acb0eb93861a7fc45aef4e08f6726843f174fa113c8ba5 +SIZE (Image-Sane-0.14.tar.gz) = 47158 Added: head/graphics/p5-Image-Sane/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Image-Sane/pkg-descr Mon Jan 1 01:23:15 2018 (r457750) @@ -0,0 +1,6 @@ +Perl bindings for the SANE (Scanner Access Now Easy) Project. This module +allows you to access SANE-compatible scanners in a Perlish and +object-oriented way, freeing you from the casting and memory management in +C, yet remaining very close in spirit to original API. + +WWW: http://search.cpan.org/dist/Image-Sane/ Added: head/graphics/p5-Image-Sane/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Image-Sane/pkg-plist Mon Jan 1 01:23:15 2018 (r457750) @@ -0,0 +1,4 @@ +%%SITE_ARCH%%/Image/Sane.pm +%%SITE_ARCH%%/Image/Sane/Device.pm +%%SITE_ARCH%%/auto/Image/Sane/Sane.so +%%PERL5_MAN3%%/Image::Sane.3.gz