--- swftools-0.9.1.orig/debian/changelog +++ swftools-0.9.1/debian/changelog @@ -0,0 +1,9 @@ +swftools (0.9.1-0lucid1) lucid; urgency=low + + * pdf2swf: bugfixes, speedups + * pdf2swf: improved font quality (FlashType) + * librfxswf: support for fontalignzones + * gpdf2swf: completely reworked pdf2swf GUI (Ricardo Pedroso) + * as3compile: many bugfixes, support for swc libraries + + -- PIERSON Yves Wed, 25 Aug 2010 16:28:55 +0200 --- swftools-0.9.1.orig/debian/copyright +++ swftools-0.9.1/debian/copyright @@ -0,0 +1,40 @@ +This work was packaged for Debian by: + + PIERSON Yves on Wed, 25 Aug 2010 16:28:55 +0200 + +It was downloaded from http://www.swftools.org/download.html + +Upstream Author(s): + + Matthias Kramm + Rainer Böhme + De Clarke + +Copyright: + + Copyright (C) 2010 Matthias Kramm + Copyright (C) 2010 Rainer Böhme + Copyright (C) 2010 De Clarke + +License: + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +The Debian packaging is: + + Copyright (C) 2010 PIERSON Yves + +and is licensed under the GPL version 3, +see `/usr/share/common-licenses/GPL-3'. --- swftools-0.9.1.orig/debian/control +++ swftools-0.9.1/debian/control @@ -0,0 +1,28 @@ +Source: swftools +Section: devel +Priority: extra +Maintainer: PIERSON Yves +Build-Depends: debhelper (>= 7), autotools-dev, libjpeg62-dev, libfreetype6-dev +Standards-Version: 3.8.3 +Homepage: http://www.swftools.org/ + +Package: swftools +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: SWFTools is a collection of utilities for working with Adobe Flash files (SWF files). + The tool collection includes programs for reading SWF files, combining them, and creating them from other content (like images, sound files, videos or sourcecode). SWFTools is released under the GPL. + The current collection is comprised of the programs detailed below: + * PDF2SWF A PDF to SWF Converter. Generates one frame per page. Enables you to have fully formatted text, including tables, formulas, graphics etc. inside your Flash Movie. It's based on the xpdf PDF parser from Derek B. Noonburg. + * SWFCombine A multi-function tool for inserting SWFs into Wrapper SWFs, contatenating SWFs, stacking SWFs or for basic parameter manipulation (e.g. changing size). + * SWFStrings Scans SWFs for text data. + * SWFDump Prints out various informations about SWFs, like contained images/fonts/sounds, disassembly of contained code as well as cross-reference and bounding box data. + * JPEG2SWF Takes one or more JPEG pictures and generates a SWF slideshow from them. Supports motion estimation compression (h.263) for better compression of video sequences. + * PNG2SWF Like JPEG2SWF, only for PNGs. + * GIF2SWF Converts GIFs to SWF. Also able to handle animated gifs. + * WAV2SWF Converts WAV audio files to SWFs, using the L.A.M.E. MP3 encoder library. + * AVI2SWF Converts AVI animation files to SWF. It supports Flash MX H.263 compression. Some examples can be found at examples.html. (Notice: this tool is not included anymore in the latest version, as ffmpeg or mencoder do a better job nowadays) + * Font2SWF Converts font files (TTF, Type1) to SWF. + * SWFBBox Allows to read out, optimize and readjust SWF bounding boxes. + * SWFC A tool for creating SWF files from simple script files. Includes support for both ActionScript 2.0 as well as ActionScript 3.0. + * SWFExtract Allows to extract Movieclips, Sounds, Images etc. from SWF files. + * AS3Compile A standalone ActionScript 3.0 compiler. Mostly compatible with Flex. \ No newline at end of file --- swftools-0.9.1.orig/debian/compat +++ swftools-0.9.1/debian/compat @@ -0,0 +1 @@ +7 --- swftools-0.9.1.orig/debian/rules +++ swftools-0.9.1/debian/rules @@ -0,0 +1,83 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# This file is public domain software, originally written by Joey Hess. +# +# This version is for packages that are architecture dependent. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + #$(MAKE) + ./configure + make + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + #$(MAKE) clean + #$(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + # Add here commands to install the package into debian/ + #$(MAKE) prefix=`pwd`/debian/`dh_listpackages`/usr install + make prefix=../debian/swftools/usr install + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installcatalogs +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo +# dh_installwm +# dh_installudev +# dh_lintian +# dh_bugfiles +# dh_undocumented + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install