Date: Mon, 16 May 2016 20:49:18 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415363 - in head/multimedia/lives: . files Message-ID: <201605162049.u4GKnI7V032914@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Mon May 16 20:49:18 2016 New Revision: 415363 URL: https://svnweb.freebsd.org/changeset/ports/415363 Log: Update to version 2.6.3 Changelog: Fix bug which caused error moving sets with no layouts (regression). Optimise recording of generated frames. Fixes for recording audio from external pulse audio. Fix incorrect recognition of single jpeg/png as video (regression). Fix "Open Location" (regression). Use png rather than jpeg internally whenever possible. Improved support for mpv instead of mplayer. Add a few new effects ported from Toonz. Added: head/multimedia/lives/files/patch-lives-plugins_weed-plugins_toonz.cpp (contents, props changed) Modified: head/multimedia/lives/Makefile head/multimedia/lives/distinfo head/multimedia/lives/pkg-plist Modified: head/multimedia/lives/Makefile ============================================================================== --- head/multimedia/lives/Makefile Mon May 16 20:24:15 2016 (r415362) +++ head/multimedia/lives/Makefile Mon May 16 20:49:18 2016 (r415363) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lives -PORTVERSION= 2.6.2 +PORTVERSION= 2.6.3 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}/ @@ -39,13 +39,12 @@ RUN_DEPENDS= ${LOCALBASE}/bin/analyseplu x264:multimedia/x264 \ cdrecord:sysutils/cdrtools -USES= ghostscript:run libtool localbase pathfix perl5 pkgconfig \ - python shebangfix tar:bzip2 +USES= compiler:c++11-lib ghostscript:run libtool localbase pathfix perl5 \ + pkgconfig python shebangfix tar:bzip2 SHEBANG_FILES= build-lives-rfx-plugin build-lives-rfx-plugin-multi \ smogrify tools/autolives.pl lives-plugins/plugins/encoders/*_encoder \ lives-plugins/plugins/playback/audiostream/audiostreamer.pl GNU_CONFIGURE= yes -USE_CSTD= gnu89 USE_GNOME= gtk30 intltool USE_LDCONFIG= yes @@ -88,9 +87,6 @@ post-patch: @${REINPLACE_CMD} '/selectRandom/d' \ ${WRKSRC}/lives-plugins/weed-plugins/projectM.cpp -pre-build-NLS-on: - @(cd ${WRKSRC}/po && ${DO_MAKE_BUILD} update-po) - post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${DOC_FILES:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} Modified: head/multimedia/lives/distinfo ============================================================================== --- head/multimedia/lives/distinfo Mon May 16 20:24:15 2016 (r415362) +++ head/multimedia/lives/distinfo Mon May 16 20:49:18 2016 (r415363) @@ -1,2 +1,3 @@ -SHA256 (lives-2.6.2.tar.bz2) = a90ac6a65d879bc3931a112baf9943d1cb9d3a8538bcd2134090510d8df830cc -SIZE (lives-2.6.2.tar.bz2) = 3800397 +TIMESTAMP = 1463232875 +SHA256 (lives-2.6.3.tar.bz2) = 495248a51f00925576631821266e1f8acf3eca3b5eb1eaaf350201bfc000b1dc +SIZE (lives-2.6.3.tar.bz2) = 3888592 Added: head/multimedia/lives/files/patch-lives-plugins_weed-plugins_toonz.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/lives/files/patch-lives-plugins_weed-plugins_toonz.cpp Mon May 16 20:49:18 2016 (r415363) @@ -0,0 +1,12 @@ +--- lives-plugins/weed-plugins/toonz.cpp.orig 2016-05-16 16:01:17 UTC ++++ lives-plugins/weed-plugins/toonz.cpp +@@ -38,7 +38,8 @@ Redistribution and use in source and bin + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +- ++#include <array> ++#include <random> + + #ifdef HAVE_SYSTEM_WEED + #include <weed/weed.h> Modified: head/multimedia/lives/pkg-plist ============================================================================== --- head/multimedia/lives/pkg-plist Mon May 16 20:24:15 2016 (r415362) +++ head/multimedia/lives/pkg-plist Mon May 16 20:49:18 2016 (r415363) @@ -64,6 +64,7 @@ lib/lives/plugins/decoders/zzavformat_de lib/lives/plugins/effects/realtime/weed/RGBdelay.so lib/lives/plugins/effects/realtime/weed/alien_overlay.so lib/lives/plugins/effects/realtime/weed/alpha_means.so +lib/lives/plugins/effects/realtime/weed/alpha_visualizer.so lib/lives/plugins/effects/realtime/weed/audio_fft.so lib/lives/plugins/effects/realtime/weed/audio_transition.so lib/lives/plugins/effects/realtime/weed/audio_volume.so @@ -124,6 +125,7 @@ lib/lives/plugins/effects/realtime/weed/ lib/lives/plugins/effects/realtime/weed/targeted_zoom.so lib/lives/plugins/effects/realtime/weed/textfun.so lib/lives/plugins/effects/realtime/weed/tone_gen.so +lib/lives/plugins/effects/realtime/weed/toonz.so lib/lives/plugins/effects/realtime/weed/tvpic.so lib/lives/plugins/effects/realtime/weed/vector_visualiser.so lib/lives/plugins/effects/realtime/weed/vertigo.so
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605162049.u4GKnI7V032914>