From owner-dev-commits-ports-all@freebsd.org Sun Jul 18 17:56:20 2021 Return-Path: Delivered-To: dev-commits-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 CED5466E921; Sun, 18 Jul 2021 17:56:20 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GSXhy4ZGtz3lR3; Sun, 18 Jul 2021 17:56:18 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7AFBE106; Sun, 18 Jul 2021 17:56:18 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16IHuIaW036641; Sun, 18 Jul 2021 17:56:18 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16IHuIQv036640; Sun, 18 Jul 2021 17:56:18 GMT (envelope-from git) Date: Sun, 18 Jul 2021 17:56:18 GMT Message-Id: <202107181756.16IHuIQv036640@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 385f1f2dadca - main - graphics/p5-Image-Sane: Fix RUN_DEPENDS MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 385f1f2dadca42748240f553fc8fe8eb86ef585f Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jul 2021 17:56:21 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=385f1f2dadca42748240f553fc8fe8eb86ef585f commit 385f1f2dadca42748240f553fc8fe8eb86ef585f Author: Po-Chuan Hsieh AuthorDate: 2021-07-18 17:47:05 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-07-18 17:47:05 +0000 graphics/p5-Image-Sane: Fix RUN_DEPENDS - Sort *_DEPENDS - Add TEST_DEPENDS - Strip shared library - Bump PORTREVISION for dependency and package change - Take maintainership --- graphics/p5-Image-Sane/Makefile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/graphics/p5-Image-Sane/Makefile b/graphics/p5-Image-Sane/Makefile index c7eb88f4286b..940083234432 100644 --- a/graphics/p5-Image-Sane/Makefile +++ b/graphics/p5-Image-Sane/Makefile @@ -2,23 +2,30 @@ PORTNAME= Image-Sane PORTVERSION= 5 +PORTREVISION= 1 CATEGORIES= graphics perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Perl extension for the SANE (Scanner Access Now Easy) Project LICENSE= ART10 GPLv1+ LICENSE_COMB= dual BUILD_DEPENDS= p5-ExtUtils-Depends>=0:devel/p5-ExtUtils-Depends \ - p5-ExtUtils-PkgConfig>=0:devel/p5-ExtUtils-PkgConfig + p5-ExtUtils-PkgConfig>=0:devel/p5-ExtUtils-PkgConfig \ + ${RUN_DEPENDS} +LIB_DEPENDS= libsane.so:graphics/sane-backends RUN_DEPENDS= p5-Exception-Class>=1.43:devel/p5-Exception-Class \ + p5-Readonly>=0:devel/p5-Readonly +TEST_DEPENDS= p5-Test-Requires>=0:devel/p5-Test-Requires \ p5-Try-Tiny>=0.28:lang/p5-Try-Tiny -LIB_DEPENDS= libsane.so:graphics/sane-backends USES= perl5 USE_PERL5= configure +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Image/Sane/Sane.so + .include