svn commit: r369137 - in head/multimedia: . vid.stab

Alberto Villa avilla at FreeBSD.org
Wed Sep 24 00:06:09 UTC 2014


Author: avilla
Date: Wed Sep 24 00:06:07 2014
New Revision: 369137
URL: http://svnweb.freebsd.org/changeset/ports/369137
QAT: https://qat.redports.org/buildarchive/r369137/

Log:
  Imagine you captured a nice video with your camcorder, compact camera
  or even cell phone while skiing, cycling or whatever sports, and the
  video is basically just jiggled. Modern cameras come along with
  hardware stabilization, however this does not work if you have really
  strong vibrations - rather the contrary, sometimes this mechanisms
  start to oscillate. Vid.Stab is your friend in this matter. It is
  designed to stabilize even strongly jiggled clips.
  
  WWW: http://public.hronopik.de/vid.stab/

Added:
  head/multimedia/vid.stab/
  head/multimedia/vid.stab/Makefile   (contents, props changed)
  head/multimedia/vid.stab/distinfo   (contents, props changed)
  head/multimedia/vid.stab/pkg-descr   (contents, props changed)
  head/multimedia/vid.stab/pkg-plist   (contents, props changed)
Modified:
  head/multimedia/Makefile

Modified: head/multimedia/Makefile
==============================================================================
--- head/multimedia/Makefile	Tue Sep 23 22:53:00 2014	(r369136)
+++ head/multimedia/Makefile	Wed Sep 24 00:06:07 2014	(r369137)
@@ -385,6 +385,7 @@
     SUBDIR += vdr-plugin-xvdr
     SUBDIR += vdr-plugins
     SUBDIR += vic
+    SUBDIR += vid.stab
     SUBDIR += vlc
     SUBDIR += vstream-client
     SUBDIR += vtkmpeg2encode

Added: head/multimedia/vid.stab/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/vid.stab/Makefile	Wed Sep 24 00:06:07 2014	(r369137)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	vid.stab
+PORTVERSION=	0.98.2
+CATEGORIES=	multimedia
+
+MAINTAINER=	avilla at FreeBSD.org
+COMMENT=	Video stabilization library
+
+LICENSE=	GPLv2 GPLv3
+LICENSE_COMB=	dual
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	georgmartius
+GH_TAGNAME=	release-0.98b
+GH_COMMIT=	3b35b4d
+
+USES=		cmake
+USE_LDCONFIG=	yes
+
+pre-configure:
+	@${REINPLACE_CMD} -e 's,lib$${LIB_SUFFIX}/pkgconfig,libdata/pkgconfig,' \
+		${WRKSRC}/CMakeModules/create_pkgconfig_file.cmake
+
+.include <bsd.port.mk>

Added: head/multimedia/vid.stab/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/vid.stab/distinfo	Wed Sep 24 00:06:07 2014	(r369137)
@@ -0,0 +1,2 @@
+SHA256 (vid.stab-0.98.2.tar.gz) = 638d18f756545385fd48bd85ab890eaf3910fdd6c6d00cb399be7bc346274cb7
+SIZE (vid.stab-0.98.2.tar.gz) = 73590

Added: head/multimedia/vid.stab/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/vid.stab/pkg-descr	Wed Sep 24 00:06:07 2014	(r369137)
@@ -0,0 +1,9 @@
+Imagine you captured a nice video with your camcorder, compact camera
+or even cell phone while skiing, cycling or whatever sports, and the
+video is basically just jiggled. Modern cameras come along with
+hardware stabilization, however this does not work if you have really
+strong vibrations - rather the contrary, sometimes this mechanisms
+start to oscillate. Vid.Stab is your friend in this matter. It is
+designed to stabilize even strongly jiggled clips.
+
+WWW: http://public.hronopik.de/vid.stab/

Added: head/multimedia/vid.stab/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/vid.stab/pkg-plist	Wed Sep 24 00:06:07 2014	(r369137)
@@ -0,0 +1,19 @@
+include/vid.stab/boxblur.h
+include/vid.stab/frameinfo.h
+include/vid.stab/libvidstab.h
+include/vid.stab/localmotion2transform.h
+include/vid.stab/motiondetect.h
+include/vid.stab/motiondetect_internal.h
+include/vid.stab/motiondetect_opt.h
+include/vid.stab/serialize.h
+include/vid.stab/transform.h
+include/vid.stab/transform_internal.h
+include/vid.stab/transformfixedpoint.h
+include/vid.stab/transformfloat.h
+include/vid.stab/transformtype.h
+include/vid.stab/transformtype_operations.h
+include/vid.stab/vidstabdefines.h
+include/vid.stab/vsvector.h
+lib/libvidstab.so
+lib/libvidstab.so.0.9
+libdata/pkgconfig/vidstab.pc


More information about the svn-ports-head mailing list