From owner-svn-ports-all@freebsd.org Sun Jul 15 16:45:30 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41B5A104631A; Sun, 15 Jul 2018 16:45:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DC5D98E3AD; Sun, 15 Jul 2018 16:45:29 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2F0A1090F; Sun, 15 Jul 2018 16:45:29 +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 w6FGjTqp067892; Sun, 15 Jul 2018 16:45:29 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6FGjTJa067889; Sun, 15 Jul 2018 16:45:29 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201807151645.w6FGjTJa067889@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 15 Jul 2018 16:45:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474701 - in head/multimedia/cinelerra-gg: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/multimedia/cinelerra-gg: . files X-SVN-Commit-Revision: 474701 X-SVN-Commit-Repository: ports 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.27 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: Sun, 15 Jul 2018 16:45:30 -0000 Author: yuri Date: Sun Jul 15 16:45:28 2018 New Revision: 474701 URL: https://svnweb.freebsd.org/changeset/ports/474701 Log: multimedia/cinelerra-gg: Update 5.1-20180705 -> 5.1-20180714 The upstream developer fixed failure when LANG isn't set, and improved the LV2 plugin handling. Reported by: upstream Deleted: head/multimedia/cinelerra-gg/files/patch-cinelerra-5.1_cinelerra_Makefile Modified: head/multimedia/cinelerra-gg/Makefile head/multimedia/cinelerra-gg/distinfo head/multimedia/cinelerra-gg/pkg-plist Modified: head/multimedia/cinelerra-gg/Makefile ============================================================================== --- head/multimedia/cinelerra-gg/Makefile Sun Jul 15 15:52:06 2018 (r474700) +++ head/multimedia/cinelerra-gg/Makefile Sun Jul 15 16:45:28 2018 (r474701) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= cinelerra-gg -DISTVERSION= 5.1-20180705 +DISTVERSION= 5.1-20180714 DISTVERSIONSUFFIX= -${REV:C/(.......).*/\1/} -PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= https://git.cinelerra-cv.org/gitweb?p=goodguy/cinelerra.git;a=snapshot;h=${REV};sf=tgz;dummy=/ # tarballs are @ https://cinelerra-cv.org/five/pkgs/src/ @@ -28,6 +27,8 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libgif.so:graphics/giflib \ + libIex-2_2.so:graphics/ilmbase \ + libIlmImf.so:graphics/OpenEXR \ libogg.so:audio/libogg \ libopenjp2.so:graphics/openjpeg \ libopus.so:audio/opus \ @@ -43,9 +44,9 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libx265.so:multimedia/x265 RUN_DEPENDS= bash:shells/bash -EXTRA_PATCHES= ${BUILD_WRKSRC}/bsd.patch:-p1 +EXTRA_PATCHES= ${BUILD_WRKSRC}/blds/bsd.patch:-p1 -REV= 34dd3a28727fc230ba5abbed50766d671a2b8055 # git revision +REV= 502b6f3b6fd04f6b01c6d70dcb81aa304dd0db1c # git revision USES= autoreconf gettext-runtime gettext-tools gmake iconv:wchar_t jpeg localbase makeinfo shebangfix SHEBANG_GLOB= *.sh *.bld @@ -95,9 +96,6 @@ post-patch: # correct the bash interpreter path @cd ${CONFIGURE_WRKSRC}/cinelerra && ${REINPLACE_CMD} -e 's|/bin/bash|${LOCALBASE}/bin/bash|' \ ../configure.ac bdcreate.C dvdcreate.C shbtnprefs.C - -post-install-LV2-on: - @${RMDIR} ${STAGEDIR}${DATADIR}/lv2 do-configure: # configure needs bash @cd ${CONFIGURE_WRKSRC} && ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/bash configure ${CONFIGURE_ARGS} Modified: head/multimedia/cinelerra-gg/distinfo ============================================================================== --- head/multimedia/cinelerra-gg/distinfo Sun Jul 15 15:52:06 2018 (r474700) +++ head/multimedia/cinelerra-gg/distinfo Sun Jul 15 16:45:28 2018 (r474701) @@ -1,3 +1,3 @@ -TIMESTAMP = 1530853700 -SHA256 (cinelerra-gg-5.1-20180705-34dd3a2.tar.gz) = cc22373d7b2f1cfbfaffb168c0e45588fd3fe8968e6ddddc351f3235ee591c0e -SIZE (cinelerra-gg-5.1-20180705-34dd3a2.tar.gz) = 130078559 +TIMESTAMP = 1531670571 +SHA256 (cinelerra-gg-5.1-20180714-502b6f3.tar.gz) = 736d9fd3f130468836e028c7c9710d363453165518a5854664f9a932a6c943ab +SIZE (cinelerra-gg-5.1-20180714-502b6f3.tar.gz) = 130108006 Modified: head/multimedia/cinelerra-gg/pkg-plist ============================================================================== --- head/multimedia/cinelerra-gg/pkg-plist Sun Jul 15 15:52:06 2018 (r474700) +++ head/multimedia/cinelerra-gg/pkg-plist Sun Jul 15 16:45:28 2018 (r474701) @@ -1250,3 +1250,4 @@ share/locale/zh/LC_MESSAGES/cin.mo share/pixmaps/cin.svg share/pixmaps/cin.xpm @dir lib/cin/plugins/picon/cinfinity +@dir %%DATADIR%%/lv2