From owner-svn-ports-all@FreeBSD.ORG Mon Nov 18 19:23:58 2013 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9CEACC5; Mon, 18 Nov 2013 19:23:58 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7D534219D; Mon, 18 Nov 2013 19:23:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAIJNwVe042722; Mon, 18 Nov 2013 19:23:58 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAIJNvKZ042716; Mon, 18 Nov 2013 19:23:57 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201311181923.rAIJNvKZ042716@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 18 Nov 2013 19:23:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334247 - in head/graphics: . p5-Image-ObjectDetect p5-Image-ObjectDetect/files 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.16 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, 18 Nov 2013 19:23:58 -0000 Author: sunpoet Date: Mon Nov 18 19:23:56 2013 New Revision: 334247 URL: http://svnweb.freebsd.org/changeset/ports/334247 Log: - Add p5-Image-ObjectDetect 0.12 - While I'm here: - Add LICENSE - Convert to new Perl framework - Add missing USES=pkgconfig - Support STAGEDIR - Sort PLIST Image::ObjectDetect is a simple module to detect objects from picture using opencv. WWW: http://search.cpan.org/dist/Image-ObjectDetect/ PR: ports/180311 Submitted by: Anes Mukhametov Added: head/graphics/p5-Image-ObjectDetect/ head/graphics/p5-Image-ObjectDetect/Makefile (contents, props changed) head/graphics/p5-Image-ObjectDetect/distinfo (contents, props changed) head/graphics/p5-Image-ObjectDetect/files/ head/graphics/p5-Image-ObjectDetect/files/patch-Makefile.PL (contents, props changed) head/graphics/p5-Image-ObjectDetect/pkg-descr (contents, props changed) head/graphics/p5-Image-ObjectDetect/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Nov 18 19:23:28 2013 (r334246) +++ head/graphics/Makefile Mon Nov 18 19:23:56 2013 (r334247) @@ -693,6 +693,7 @@ SUBDIR += p5-Image-Math-Constrain SUBDIR += p5-Image-MetaData-GQview SUBDIR += p5-Image-MetaData-JPEG + SUBDIR += p5-Image-ObjectDetect SUBDIR += p5-Image-PBMlib SUBDIR += p5-Image-Pngslimmer SUBDIR += p5-Image-Scale Added: head/graphics/p5-Image-ObjectDetect/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Image-ObjectDetect/Makefile Mon Nov 18 19:23:56 2013 (r334247) @@ -0,0 +1,22 @@ +# Created by: Anes Mukhametov +# $FreeBSD$ + +PORTNAME= Image-ObjectDetect +PORTVERSION= 0.12 +CATEGORIES= graphics perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= anes@anes.su +COMMENT= Detects objects from picture using opencv + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/opencv.pc:${PORTSDIR}/graphics/opencv +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_PERL5= configure +USES= perl5 pkgconfig + +.include Added: head/graphics/p5-Image-ObjectDetect/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Image-ObjectDetect/distinfo Mon Nov 18 19:23:56 2013 (r334247) @@ -0,0 +1,2 @@ +SHA256 (Image-ObjectDetect-0.12.tar.gz) = 5ad5d9eb4d81d52175c2bea3c3d8754f61ba99276188b155a73d91ae5c0c6efd +SIZE (Image-ObjectDetect-0.12.tar.gz) = 91435 Added: head/graphics/p5-Image-ObjectDetect/files/patch-Makefile.PL ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Image-ObjectDetect/files/patch-Makefile.PL Mon Nov 18 19:23:56 2013 (r334247) @@ -0,0 +1,11 @@ +--- Makefile.PL.orig 2012-03-01 11:06:49.000000000 +0000 ++++ Makefile.PL 2012-03-01 11:07:14.000000000 +0000 +@@ -16,7 +16,7 @@ + 'Test::More' => 0.32, + }, + LIBS => $libs, +- CCFLAGS => $ccflags, ++ INC => $ccflags, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Image-ObjectDetect-*' }, + ); Added: head/graphics/p5-Image-ObjectDetect/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Image-ObjectDetect/pkg-descr Mon Nov 18 19:23:56 2013 (r334247) @@ -0,0 +1,4 @@ +Image::ObjectDetect is a simple module to detect objects +from picture using opencv. + +WWW: http://search.cpan.org/dist/Image-ObjectDetect/ Added: head/graphics/p5-Image-ObjectDetect/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Image-ObjectDetect/pkg-plist Mon Nov 18 19:23:56 2013 (r334247) @@ -0,0 +1,9 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/Image/ObjectDetect.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Image/ObjectDetect.xs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/ObjectDetect/.packlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/ObjectDetect/ObjectDetect.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/ObjectDetect/ObjectDetect.so +%%PERL5_MAN3%%/Image::ObjectDetect.3.gz +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/ObjectDetect +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Image +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Image