From owner-svn-ports-head@freebsd.org Tue Dec 5 18:53:43 2017 Return-Path: Delivered-To: svn-ports-head@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 EC956E74BD3; Tue, 5 Dec 2017 18:53:43 +0000 (UTC) (envelope-from yuri@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 A9E5968E7E; Tue, 5 Dec 2017 18:53:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB5IrgUY053405; Tue, 5 Dec 2017 18:53:42 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB5IrgmJ053401; Tue, 5 Dec 2017 18:53:42 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201712051853.vB5IrgmJ053401@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 5 Dec 2017 18:53:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455603 - in head/multimedia: . chilitags X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/multimedia: . chilitags X-SVN-Commit-Revision: 455603 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2017 18:53:44 -0000 Author: yuri Date: Tue Dec 5 18:53:42 2017 New Revision: 455603 URL: https://svnweb.freebsd.org/changeset/ports/455603 Log: New port: multimedia/chilitags: Robust fiducial markers for augmented reality and robotics Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13373 Added: head/multimedia/chilitags/ head/multimedia/chilitags/Makefile (contents, props changed) head/multimedia/chilitags/distinfo (contents, props changed) head/multimedia/chilitags/pkg-descr (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Tue Dec 5 18:37:25 2017 (r455602) +++ head/multimedia/Makefile Tue Dec 5 18:53:42 2017 (r455603) @@ -31,6 +31,7 @@ SUBDIR += ccextractor SUBDIR += cclive SUBDIR += cheese + SUBDIR += chilitags SUBDIR += clipgrab SUBDIR += clive SUBDIR += clutter-gst Added: head/multimedia/chilitags/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/chilitags/Makefile Tue Dec 5 18:53:42 2017 (r455603) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= chilitags +DISTVERSION= 2.0.0-169 +DISTVERSIONSUFFIX= -g0d9854f +CATEGORIES= multimedia + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Robust fiducial markers for augmented reality and robotics + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/gpl.txt + +LIB_DEPENDS= libopencv_imgproc.so:graphics/opencv-core \ + libopencv_video.so:graphics/opencv + +USES= cmake:outsource +USE_GITHUB= yes +GH_ACCOUNT= chili-epfl +USE_LDCONFIG= yes + +PLIST_FILES= bin/chilitags-creator \ + include/chilitags/chilitags.hpp \ + include/chilitags/chilitags_export.hpp \ + lib/libchilitags.so \ + libdata/pkgconfig/chilitags.pc + +post-install: + @${RM} ${STAGEDIR}${PREFIX}/lib/libchilitags_static.a + +.include Added: head/multimedia/chilitags/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/chilitags/distinfo Tue Dec 5 18:53:42 2017 (r455603) @@ -0,0 +1,3 @@ +TIMESTAMP = 1512448288 +SHA256 (chili-epfl-chilitags-2.0.0-169-g0d9854f_GH0.tar.gz) = b285023cf1e7ef203373409caad4316aaf0e4c2827acd8aa3b558b7b87ac8469 +SIZE (chili-epfl-chilitags-2.0.0-169-g0d9854f_GH0.tar.gz) = 188400 Added: head/multimedia/chilitags/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/chilitags/pkg-descr Tue Dec 5 18:53:42 2017 (r455603) @@ -0,0 +1,13 @@ +Chilitags are a C++ cross-platform software library for the detection and +identification of 2D fiducial markers (a.k.a. tags). Their purpose is to be +printed and placed on objects from the real world, to form the basis of +Robotics or Augmented Reality (AR) applications. Using a camera, the position +of the tagged objects can be acquired by a computer. + +Chilitags were developed by Pixar internally for projects of the CHILI lab +(Computer-Human Interaction in Learning and Instruction, formerly CRAFT), +such as Metroscope or TapaCarp. There are already many alternatives +(e.g. ARToolKit, or reacTIVision, among many others), but we decided to +release Chilitags anyway, as there seemed to be a demand for it. + +WWW: http://chili.epfl.ch/software