Update of /cvsroot/fink/dists/10.2/unstable/main/finkinfo/utils
In directory sc8-pr-cvs1:/tmp/cvs-serv8348
Added Files:
mjpegtools.info mjpegtools.patch
Log Message:
New port
--- NEW FILE: mjpegtools.info ---
Package: mjpegtools
Version: 1.6.1
Revision: 1
###
Depends: %N2-shlibs, dlcompat-shlibs, x11, libdv4-shlibs, glib-shlibs, gtk+-shlibs,
libgnugetopt-shlibs, libjpeg-shlibs, libpng3-shlibs, libquicktime0-shlibs, sdl-shlibs
BuildDepends: libiconv-dev, gettext-dev, dlcompat-dev, libdv4, glib, gtk+,
libgnugetopt, libjpeg, libpng3, libquicktime0, libmovtar, sdl
###
Source: mirror:sourceforge:mjpeg/%n-%v.tar.gz
Source-MD5: fa2aeec19deafe86d22b34eda329f9f4
###
GCC: 3.1
###
Patch: %n.patch
PatchScript: <<
### Fix relink
perl -pi -e 's,need_relink=yes,need_relink=no,g' ltmain.sh
<<
###
### Fixes for getopt on 10.2
SetCPPFLAGS: -I%p/include/gnugetopt -D__GNU_LIBRARY__
###
DocFiles: AUTHORS BUGS CHANGES COPYING ChangeLog HINTS INSTALL NEWS PLANS INSTALL
README* TODO
###
ConfigureParams: --enable-cmov-extension --disable-xfree-ext --enable-simd-accel
--with-glib-prefix=%p --with-gtk-prefix=%p --with-movtar-prefix=%p
--with-sdl-prefix=%p --with-quicktime=%p --with-dv=%p --with-dv-yv12=%p
--without-aviplay --without-jpeg-mmx --with-x --enable-shared --enable-static
--mandir=%i/share/man --infodir=%p/share/info --libexecdir=%p/lib
###
SplitOff: <<
Package: %N-dev
Depends: %N2-shlibs
Files: <<
bin/mjpegtools-config
include
lib/liblavfile.a
lib/liblavfile.la
lib/liblavfile.dylib
lib/liblavjpeg.a
lib/liblavjpeg.la
lib/liblavjpeg.dylib
lib/liblavplay.a
lib/liblavplay.la
lib/liblavplay.dylib
lib/libmjpegutils.a
lib/pkgconfig
<<
DocFiles: AUTHORS BUGS CHANGES COPYING ChangeLog HINTS INSTALL NEWS PLANS INSTALL
README* TODO
Description: Development files for MJPEG/MPEG capture/editing/compression
<<
SplitOff2: <<
Package: %N2-shlibs
Depends: dlcompat-shlibs, libpng3-shlibs, libjpeg-shlibs, libdv4-shlibs, glib-shlibs
Files: <<
lib/liblavfile.*.dylib
lib/liblavjpeg.*.dylib
lib/liblavplay.*.dylib
<<
Shlibs: <<
%p/lib/liblavfile.0.dylib 2.0.0 %n (>= 1.6.1-1)
%p/lib/liblavjpeg.0.dylib 2.0.0 %n (>= 1.6.1-1)
%p/lib/liblavplay.0.dylib 2.0.0 %n (>= 1.6.1-1)
<<
DocFiles: AUTHORS BUGS CHANGES COPYING ChangeLog HINTS INSTALL NEWS PLANS INSTALL
README* TODO
Description: Libraries for MJPEG/MPEG capture/editing/compression
<<
###
Description: Tools for MJPEG/MPEG capture/editing/compression
DescDetail: <<
Mjpeg tools is a suite of programs which support video capture, basic
editing, playback, and compression to MPEG-1/2 of MJPEG video. The capture
software allows MJPEG video streams in AVI, Quicktime, and movtar format to
be produced using the Iomega Buz, Miro DC10+, Matrox Marvel, and similar
hardware. The editing and playback tools are hardware independent, with
support for hardware accelerated playback if present. The MPEG compression
tools are based on MPEG Software Simulation Group's reference encoder with
enhancements to provide far faster compression and significant quality
improvements.
<<
###
License: GPL
Maintainer: Justin F. Hallett <[EMAIL PROTECTED]>
Homepage: http://mjpeg.sourceforge.net/
--- NEW FILE: mjpegtools.patch ---
diff -ruN mjpegtools-1.6.1.orig/configure mjpegtools-1.6.1/configure
--- mjpegtools-1.6.1.orig/configure Mon Dec 9 05:58:05 2002
+++ mjpegtools-1.6.1/configure Fri Aug 15 12:43:05 2003
@@ -6382,7 +6382,7 @@
# FIXME: Relying on posixy $() will cause problems for
# cross-compilation, but unfortunately the echo tests do not
# yet detect zsh echo's removal of \ escapes.
- archive_cmds='$nonopt $(test "x$module" = xyes && echo -bundle || echo
-dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags
-install_name $rpath/$soname $verstring'
+ archive_cmds='$nonopt $(test "x$module" = xyes && echo -bundle || echo
-dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags $(test
"x$module" != xyes && echo -install_name $rpath/$soname $verstring)'
# We need to add '_' to the symbols in $export_symbols first
#archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
hardcode_direct=yes
diff -ruN mjpegtools-1.6.1.orig/lavtools/Makefile.in
mjpegtools-1.6.1/lavtools/Makefile.in
--- mjpegtools-1.6.1.orig/lavtools/Makefile.in Mon Dec 9 05:58:01 2002
+++ mjpegtools-1.6.1/lavtools/Makefile.in Fri Aug 15 12:42:19 2003
@@ -161,7 +161,6 @@
LAV_ALL_LIB_OPTS = \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
- -release $(LT_RELEASE) \
-export-dynamic
diff -ruN mjpegtools-1.6.1.orig/mplex/multplex.cc mjpegtools-1.6.1/mplex/multplex.cc
--- mjpegtools-1.6.1.orig/mplex/multplex.cc Mon Apr 29 08:36:00 2002
+++ mjpegtools-1.6.1/mplex/multplex.cc Fri Aug 15 12:14:07 2003
@@ -8,6 +8,8 @@
#include <mjpeg_logging.h>
#include <format_codes.h>
+#include <assert.h>
+
#include "interact.hh"
#include "videostrm.hh"
#include "outputstream.hh"
diff -ruN mjpegtools-1.6.1.orig/mplex/stillsstream.cc
mjpegtools-1.6.1/mplex/stillsstream.cc
--- mjpegtools-1.6.1.orig/mplex/stillsstream.cc Wed Apr 17 22:32:02 2002
+++ mjpegtools-1.6.1/mplex/stillsstream.cc Fri Aug 15 12:31:42 2003
@@ -22,6 +22,7 @@
#include <format_codes.h>
+#include <assert.h>
#include "stillsstream.hh"
#include "interact.hh"
diff -ruN mjpegtools-1.6.1.orig/mplex/systems.cc mjpegtools-1.6.1/mplex/systems.cc
--- mjpegtools-1.6.1.orig/mplex/systems.cc Mon Apr 29 08:36:01 2002
+++ mjpegtools-1.6.1/mplex/systems.cc Fri Aug 15 12:26:50 2003
@@ -4,6 +4,9 @@
#include <string.h>
#include <sys/param.h>
#include <sys/stat.h>
+
+#include <assert.h>
+
#include "systems.hh"
#include "mplexconsts.hh"
-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits