From owner-svn-ports-head@freebsd.org Fri Apr 22 13:03:43 2016 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 3C421B1896F; Fri, 22 Apr 2016 13:03:43 +0000 (UTC) (envelope-from feld@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 F15871965; Fri, 22 Apr 2016 13:03:42 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3MD3gJ6030418; Fri, 22 Apr 2016 13:03:42 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3MD3fXn030412; Fri, 22 Apr 2016 13:03:41 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201604221303.u3MD3fXn030412@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 22 Apr 2016 13:03:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413778 - in head/multimedia: . ffdec ffdec/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-head@freebsd.org X-Mailman-Version: 2.1.21 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: Fri, 22 Apr 2016 13:03:43 -0000 Author: feld Date: Fri Apr 22 13:03:41 2016 New Revision: 413778 URL: https://svnweb.freebsd.org/changeset/ports/413778 Log: Opensource flash SWF decompiler and editor. Extract resources, convert SWF to FLA, edit ActionScript, replace images, sounds, texts or fonts. Various output formats available. Works with Java on Windows, Linux or MacOS. WWW: https://www.free-decompiler.com/flash/ Added: head/multimedia/ffdec/ head/multimedia/ffdec/Makefile (contents, props changed) head/multimedia/ffdec/distinfo (contents, props changed) head/multimedia/ffdec/files/ head/multimedia/ffdec/files/ffdec.in (contents, props changed) head/multimedia/ffdec/pkg-descr (contents, props changed) head/multimedia/ffdec/pkg-plist (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Fri Apr 22 12:58:47 2016 (r413777) +++ head/multimedia/Makefile Fri Apr 22 13:03:41 2016 (r413778) @@ -55,6 +55,7 @@ SUBDIR += emby-server SUBDIR += emotion_generic_players-vlc SUBDIR += emovix + SUBDIR += ffdec SUBDIR += ffmpeg SUBDIR += ffmpeg0 SUBDIR += ffmpeg2theora Added: head/multimedia/ffdec/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/ffdec/Makefile Fri Apr 22 13:03:41 2016 (r413778) @@ -0,0 +1,30 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= ffdec +PORTVERSION= 8.0.1 +CATEGORIES= multimedia java +MASTER_SITES= http://www.free-decompiler.com/flash/download/ +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Flash decompiler + +LICENSE= GPLv3+ + +USES= zip +USE_JAVA= yes +JAVA_VERSION= 1.8 +NO_BUILD= yes +NO_WRKSUBDIR= yes + +SUB_FILES= ${PORTNAME} + +do-install: + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR}/lib + cd ${WRKSRC}/lib && ${COPYTREE_SHARE} \* ${STAGEDIR}${DATADIR}/lib/ + +.include Added: head/multimedia/ffdec/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/ffdec/distinfo Fri Apr 22 13:03:41 2016 (r413778) @@ -0,0 +1,2 @@ +SHA256 (ffdec_8.0.1.zip) = 5d89c2d1091479acee27e6bccb37a6f2c6e785ee52cc72dd1ac1bcd0d7140c6e +SIZE (ffdec_8.0.1.zip) = 10509349 Added: head/multimedia/ffdec/files/ffdec.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/ffdec/files/ffdec.in Fri Apr 22 13:03:41 2016 (r413778) @@ -0,0 +1,2 @@ +#!/bin/sh +exec java -jar %%DATADIR%%/ffdec.jar ${@} Added: head/multimedia/ffdec/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/ffdec/pkg-descr Fri Apr 22 13:03:41 2016 (r413778) @@ -0,0 +1,6 @@ +Opensource flash SWF decompiler and editor. Extract resources, convert +SWF to FLA, edit ActionScript, replace images, sounds, texts or fonts. +Various output formats available. Works with Java on Windows, Linux or +MacOS. + +WWW: https://www.free-decompiler.com/flash/ Added: head/multimedia/ffdec/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/ffdec/pkg-plist Fri Apr 22 13:03:41 2016 (r413778) @@ -0,0 +1,41 @@ +bin/ffdec +%%DATADIR%%/ffdec.jar +%%DATADIR%%/lib/JavactiveX.jar +%%DATADIR%%/lib/LZMA.jar +%%DATADIR%%/lib/avi.jar +%%DATADIR%%/lib/avi.montemedia.license.txt +%%DATADIR%%/lib/cmykjpeg.jar +%%DATADIR%%/lib/ffdec_lib.jar +%%DATADIR%%/lib/ffdec_lib.license.txt +%%DATADIR%%/lib/flamingo-6.2.jar +%%DATADIR%%/lib/flamingo.license.txt +%%DATADIR%%/lib/flashdebugger.jar +%%DATADIR%%/lib/gif.jar +%%DATADIR%%/lib/gif.license.txt +%%DATADIR%%/lib/gnujpdf.jar +%%DATADIR%%/lib/jargs.jar +%%DATADIR%%/lib/jl.license.txt +%%DATADIR%%/lib/jl1.0.1.jar +%%DATADIR%%/lib/jna-3.5.1.jar +%%DATADIR%%/lib/jna.license.txt +%%DATADIR%%/lib/jpacker.jar +%%DATADIR%%/lib/jpacker.license.txt +%%DATADIR%%/lib/jpproxy.jar +%%DATADIR%%/lib/jpproxy.muffin.license.txt +%%DATADIR%%/lib/jsyntaxpane-0.9.5.jar +%%DATADIR%%/lib/jsyntaxpane.license.txt +%%DATADIR%%/lib/nellymoser.jar +%%DATADIR%%/lib/nellymoser.license.txt +%%DATADIR%%/lib/sfntly.jar +%%DATADIR%%/lib/sfntly.license.txt +%%DATADIR%%/lib/substance-6.2.jar +%%DATADIR%%/lib/substance-flamingo-6.2.jar +%%DATADIR%%/lib/substance-flamingo.license.txt +%%DATADIR%%/lib/substance.license.txt +%%DATADIR%%/lib/tablelayout.jar +%%DATADIR%%/lib/treetable.jar +%%DATADIR%%/lib/trident-6.2.jar +%%DATADIR%%/lib/trident.license.txt +%%DATADIR%%/lib/ttf.doubletype.license.txt +%%DATADIR%%/lib/ttf.fontastic.license.txt +%%DATADIR%%/lib/ttf.jar