Date: Sun, 13 Oct 2002 16:30:04 +0200 (CEST) From: hendrik@scholz.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/44008: maintainer update: graphics/transcode Message-ID: <200210131430.g9DEU4XE062580@goanna.lan.raisdorf.net>
next in thread | raw e-mail | index | archive | help
>Number: 44008 >Category: ports >Synopsis: maintainer update: graphics/transcode >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Oct 13 07:40:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.6-STABLE i386 >Organization: >Environment: System: FreeBSD goanna.lan.raisdorf.net 4.6-STABLE FreeBSD 4.6-STABLE #4: Tue Oct 1 19:58:23 CEST 2002 hscholz@goanna.lan.raisdorf.net:/usr/src/sys/compile/GOANNA i386 >Description: maintainer update of transcode with these changes: - update to 0.6.2 cvs snapshot - add gtk12 dependency - use REINPLACE_CMD instead of perl -pi -e - fix LIBFAME problems (thanks ports/43379) - optional ogg and mjpeg modules (from ports/43379) - remove libmpeg2 - use internal ffmpeg provided by transcode instead of ports ffmpeg - fix filter/preview/pv.c to compile on FreeBSD - plist update superceedes ports/41479, ports/43379 and ports/43535 Patch download URL: http://www.raisdorf.net/files/FreeBSD/transcode.0.6.2cvs.patch >How-To-Repeat: >Fix: --- transcode.0.6.2cvs.patch begins here --- diff -urP transcode-tree/Makefile transcode/Makefile --- transcode-tree/Makefile Sun Oct 13 12:18:43 2002 +++ transcode/Makefile Sun Oct 13 15:52:01 2002 @@ -6,28 +6,28 @@ # PORTNAME= transcode -PORTVERSION= 0.6.0.5 -PORTREVISION= 1 +PORTVERSION= 0.6.2 +DISTNAME= ${PORTNAME}-${PORTVERSION}.20021010 CATEGORIES= graphics MASTER_SITES= http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/pre/ -DISTNAME= ${PORTNAME}-${PORTVERSION:S/.5$//g}pre5 -EXTRACT_SUFX= .tgz MAINTAINER= hendrik@scholz.net LIB_DEPENDS= dvdread.2:${PORTSDIR}/graphics/libdvdread \ - gnugetopt.1:${PORTSDIR}/devel/libgnugetopt + gnugetopt.1:${PORTSDIR}/devel/libgnugetopt \ + jpeg.9:${PORTSDIR}/graphics/jpeg USE_XLIB= yes USE_GNOMENG= yes -USE_GNOME= glib12 +USE_GNOME= glib12 gtk12 USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lgnugetopt" \ SDL_CONFIG="${LOCALBASE}/bin/sdl11-config" +USE_REINPLACE= yes -MAN1= transcode.1 tccat.1 avisplit.1 avimerge.1 avifix.1 +MAN1= transcode.1 tccat.1 tcdemux.1 tcprobe.1 tcscan.1 avisplit.1 avisync.1 avimerge.1 avifix.1 .include <bsd.port.pre.mk> @@ -63,12 +63,8 @@ WITH_OPENQUICKTIME= yes .endif -.if exists(${LOCALBASE}/lib/libmpeg2.so) -WITH_LIBMPEG2= yes -.endif - .if exists(${LOCALBASE}/lib/libfame.so) -WITH_LIBFAME= yes +WITH_FAME= yes .endif .if exists(${LOCALBASE}/lib/libxvidcore.so) @@ -88,6 +84,14 @@ WITH_LAME= yes .endif +.if exists(${LOCALBASE}/lib/libogg.so) +WITH_OGG= yes +.endif + +.if exists(${LOCALBASE}/lib/liblavplay.so) +WITH_MJPEG= yes +.endif + .if defined(WITH_IMAGEMAGICK) LIB_DEPENDS+= Magick.5:${PORTSDIR}/graphics/ImageMagick PLIST_SUB+= WITH_IMAGEMAGICK="" @@ -102,7 +106,7 @@ .endif .if defined(WITH_AVIFILE) -LIB_DEPENDS+= aviplay-0.7.0:${PORTSDIR}/graphics/avifile +LIB_DEPENDS+= aviplay:${PORTSDIR}/graphics/avifile PLIST_SUB+= WITH_AVIFILE="" .else CONFIGURE_ARGS+= --with-avifile-mods=no \ @@ -126,7 +130,7 @@ PLIST_SUB+= WITH_LIBXML2="@comment " .endif -.if defined(WITH_FFMPEG) +.if defined(WITH_FFMPEG) && !defined(WITHOUT_FFMPEG) BUILD_DEPENDS+= ${LOCALBASE}/bin/ffmpeg:${PORTSDIR}/graphics/ffmpeg PLIST_SUB+= WITH_FFMPEG="" .else @@ -136,6 +140,7 @@ .if defined(WITH_LIBDV) LIB_DEPENDS+= dv.2:${PORTSDIR}/graphics/libdv PLIST_SUB+= WITH_LIBDV="" +CONFIGURE_ARGS+= --with-pal-yuv=YV12 .else CONFIGURE_ARGS+= --with-dv=no PLIST_SUB+= WITH_LIBDV="@comment " @@ -147,11 +152,8 @@ CONFIGURE_ARGS+= --with-openqt=no .endif -.if defined(WITH_LIBMPEG2) -LIB_DEPENDS+= mpeg2.0:${PORTSDIR}/graphics/libmpeg2 -.endif .if defined(WITH_FAME) -LIB_DEPENDS+= fame.10:${PORTSDIR}/graphics/libfame +LIB_DEPENDS+= fame-0.9:${PORTSDIR}/graphics/libfame PLIST_SUB+= WITH_FAME="" .else PLIST_SUB+= WITH_FAME="@comment " @@ -183,11 +185,25 @@ PLIST_SUB+= WITH_LAME="@comment " .endif -pre-everything:: +.if defined(WITH_OGG) +LIB_DEPENDS+= ogg.4:${PORTSDIR}/audio/libogg +CONFIGURE_ARGS+= --with-ogg=yes +PLIST_SUB+= WITH_OGG="" +.else +PLIST_SUB+= WITH_OGG="@comment " +.endif + +.if defined(WITH_MJPEG) +LIB_DEPENDS+= lavplay-1.6.0:${PORTSDIR}/graphics/mjpegtools +PLIST_SUB+= WITH_MJPEG="" +.else +PLIST_SUB+= WITH_MJPEG="@comment " +.endif + +pre-everything: .if !defined(WITH_OPTIMIZED_CFLAGS) @${ECHO_MSG} - @${ECHO_MSG} "You can enable extra optimizations by defining" - @${ECHO_MSG} "WITH_OPTIMIZED_CFLAGS." + @${ECHO_MSG} "You can enable extra optimizations by defining WITH_OPTIMIZED_CFLAGS." .endif .if !defined(WITH_IMAGEMAGICK) @${ECHO_MSG} @@ -203,7 +219,7 @@ @${ECHO_MSG} @${ECHO_MSG} "You can enable libxml2-dependent modules by defining WITH_LIBXML2." .endif -.if !defined(WITH_FFMPEG) +.if !defined(WITH_FFMPEG) || defined(WITHOUT_FFMEG) @${ECHO_MSG} @${ECHO_MSG} "You can enable ffmpeg-dependent modules by defining WITH_FFMPEG." .endif @@ -240,13 +256,7 @@ .endif .if !defined(WITH_FAME) @${ECHO_MSG} - @${ECHO_MSG} "You can enable libfame-support by defining WITH_LIBFAME." -.endif -.if !defined(WITH_LIBMPEG2) - @${ECHO_MSG} - @${ECHO_MSG} "You can enable libmpeg2-dependent modules by defining WITH_LIBMPEG2." - @${ECHO_MSG} "You will probably want to enable this, if you plan to" - @${ECHO_MSG} "rip DVDs." + @${ECHO_MSG} "You can enable libfame-support by defining WITH_FAME." .endif .if !defined(WITH_XVID) @${ECHO_MSG} @@ -255,33 +265,40 @@ @${ECHO_MSG} "You will probably want to enable this, if you plan to" @${ECHO_MSG} "rip DVDs." .endif +.if !defined(WITH_OGG) + @${ECHO_MSG} + @${ECHO_MSG} "You can enable libogg support by defining WITH_OGG." +.endif +.if !defined(WITH_MJPEG) + @${ECHO_MSG} + @${ECHO_MSG} "You can enable support for the MJPEG toolkit by defining WITH_MJPEG" +.endif post-patch: .if ${OSVERSION} <= 500027 - @${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 -x ${PERL} -pi \ + @${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 -x ${REINPLACE_CMD} \ -e 's|<stdint.h>|<inttypes.h>|' .endif .if !defined(WITH_OPTIMIZED_CFLAGS) - @${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 -x ${PERL} -pi \ + @${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 -x ${REINPLACE_CMD} \ -e 's|-O[236]|${CFLAGS}|' .endif - @${PERL} -pi -e 's|(seek)64|\1|' ${WRKSRC}/avilib/avidump.c - @${PERL} -pi -e 's|<SDL/|<|' ${WRKSRC}/filter/preview/display.h + @${REINPLACE_CMD} -E -e 's|(seek)64|\1|' ${WRKSRC}/avilib/avidump.c + @${REINPLACE_CMD} -E -e 's|<SDL/|<|' ${WRKSRC}/filter/preview/display.h - @${PERL} -pi -e 's|(-la52)|\1 ${LIBA52_DEP_LIBS}|' \ + @${REINPLACE_CMD} -E -e 's|(-la52)|\1 ${LIBA52_DEP_LIBS}|' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} pre-configure: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - @${PERL} -pi -e 's|-ldl||g' ${WRKSRC}/configure + @${REINPLACE_CMD} -E -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -E -e 's|-ldl||g' ${WRKSRC}/configure + @${REINPLACE_CMD} -E -e 's|WRKSRC|${WRKSRC}|g' ${WRKSRC}/export/Makefile.in post-install: .if defined(WITH_XVID) @${LN} -sf ${LOCALBASE}/lib/libxvidcore.so \ ${PREFIX}/lib/transcode/libxvidcore.so .endif - -# Remove .la-files. @${RM} ${PREFIX}/lib/transcode/*.la diff -urP transcode-tree/distinfo transcode/distinfo --- transcode-tree/distinfo Sun Oct 13 12:18:43 2002 +++ transcode/distinfo Sun Oct 13 12:46:25 2002 @@ -1 +1 @@ -MD5 (transcode-0.6.0pre5.tgz) = f791b1aac090312459e3e9cec2d1fd6e +MD5 (transcode-0.6.2.20021010.tar.gz) = 97b46fe8d7d650c8d0b57096bce162a1 diff -urP transcode-tree/files/patch-src:export:Makefile.in transcode/files/patch-src:export:Makefile.in --- transcode-tree/files/patch-src:export:Makefile.in Thu Jan 1 01:00:00 1970 +++ transcode/files/patch-src:export:Makefile.in Sun Oct 13 13:50:23 2002 @@ -0,0 +1,13 @@ +--- export/Makefile.in.orig Tue Sep 3 23:56:33 2002 ++++ export/Makefile.in Tue Sep 3 23:58:12 2002 +@@ -536,7 +536,9 @@ + export_ffmpeg.la: $(export_ffmpeg_la_OBJECTS) $(export_ffmpeg_la_DEPENDENCIES) + $(LINK) -rpath $(pkgdir) $(export_ffmpeg_la_LDFLAGS) $(export_ffmpeg_la_OBJECTS) $(export_ffmpeg_la_LIBADD) $(LIBS) + export_ffmpeg4.la: $(export_ffmpeg4_la_OBJECTS) $(export_ffmpeg4_la_DEPENDENCIES) +- $(LINK) -rpath $(pkgdir) $(export_ffmpeg4_la_LDFLAGS) $(export_ffmpeg4_la_OBJECTS) $(export_ffmpeg4_la_LIBADD) $(LIBS) ++ $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) \ ++ $(AM_LDFLAGS) -o $@ -IWRKSRC/ffmpeg/libavcodec -rpath \ ++ $(pkgdir) $(export_ffmpeg4_la_LDFLAGS) $(export_ffmpeg4_la_OBJECTS) $(export_ffmpeg4_la_LIBADD) $(LIBS) + export_im.la: $(export_im_la_OBJECTS) $(export_im_la_DEPENDENCIES) + $(LINK) -rpath $(pkgdir) $(export_im_la_LDFLAGS) $(export_im_la_OBJECTS) $(export_im_la_LIBADD) $(LIBS) + export_iv50.la: $(export_iv50_la_OBJECTS) $(export_iv50_la_DEPENDENCIES) diff -urP transcode-tree/files/patch-src:filter:preview:display.h transcode/files/patch-src:filter:preview:display.h --- transcode-tree/files/patch-src:filter:preview:display.h Thu Jan 1 01:00:00 1970 +++ transcode/files/patch-src:filter:preview:display.h Sun Oct 13 12:24:25 2002 @@ -0,0 +1,16 @@ +--- filter/preview/display.h.orig Fri Aug 9 10:41:59 2002 ++++ filter/preview/display.h Fri Aug 9 10:41:59 2002 +@@ -39,9 +39,11 @@ + #endif // HAVE_LIBXV + + #if HAVE_SDL +-#include <SDL/SDL.h> +-#include <SDL/SDL_syswm.h> ++#include <SDL.h> ++#include <SDL_syswm.h> + #endif // HAVE_SDL ++ ++#include <glib.h> + + #if HAVE_GTK + #include <gtk/gtk.h> diff -urP transcode-tree/files/patch-src:filter:preview:filter_preview.h transcode/files/patch-src:filter:preview:filter_preview.h --- transcode-tree/files/patch-src:filter:preview:filter_preview.h Thu Jan 1 01:00:00 1970 +++ transcode/files/patch-src:filter:preview:filter_preview.h Sun Oct 13 12:24:25 2002 @@ -0,0 +1,11 @@ +--- filter/preview/filter_preview.h.orig Fri Aug 9 10:41:59 2002 ++++ filter/preview/filter_preview.h Fri Aug 9 10:41:59 2002 +@@ -10,6 +10,8 @@ + #include <sys/mman.h> + #include <fcntl.h> + ++#include <glib.h> ++ + #include <libdv/dv_types.h> + #include <libdv/dv.h> + #include "display.h" diff -urP transcode-tree/files/patch-src:filter:preview:pv.c transcode/files/patch-src:filter:preview:pv.c --- transcode-tree/files/patch-src:filter:preview:pv.c Thu Jan 1 01:00:00 1970 +++ transcode/files/patch-src:filter:preview:pv.c Sun Oct 13 13:05:26 2002 @@ -0,0 +1,54 @@ +--- filter/preview/pv.c.orig Sun Oct 13 13:04:06 2002 ++++ filter/preview/pv.c Sun Oct 13 13:05:06 2002 +@@ -37,10 +37,6 @@ + #include <sys/ipc.h> + #include <sys/shm.h> + +-#ifdef __FreeBSD__ /* We don't have on_exit() */ +-dv_display_t *dv_dpy_on_exit_hack = NULL; +-#endif +- + #define XV_FORMAT_MASK 0x03 + #define XV_FORMAT_ASIS 0x00 + #define XV_FORMAT_NORMAL 0x01 +@@ -127,9 +123,6 @@ + + free(dv_dpy); + dv_dpy = NULL; +-#ifdef __FreeBSD__ +- dv_dpy_on_exit_hack = NULL; +-#endif + } // xv_display_exit + + static int xv_pause=0; +@@ -482,17 +475,6 @@ + if(code && arg) xv_display_exit(arg); + } // dv_display_exit_handler + +-#ifdef __FreeBSD__ +-static void +-xv_display_on_exit_hack_handler() +-{ +- if(xv_dpy_on_exit_hack != NULL) { +- xv_display_exit(xv_dpy_on_exit_hack); +- } /* if */ +-} // xv_display_exit_handler +-#endif +- +- + int xv_display_init(xv_display_t *dv_dpy, int *argc, char ***argv, int width, int height, char *w_name, char *i_name) { + + dv_dpy->width = width; +@@ -535,12 +517,7 @@ + break; + } + +-#ifdef __FreeBSD__ +- dv_dpy_on_exit_hack = dv_dpy; +- atexit(xv_display_on_exit_hack_handler); +-#else + on_exit(xv_display_exit_handler, dv_dpy); +-#endif + + return(0); + diff -urP transcode-tree/pkg-comment transcode/pkg-comment --- transcode-tree/pkg-comment Sun Oct 13 12:18:43 2002 +++ transcode/pkg-comment Sun Oct 13 15:10:58 2002 @@ -1 +1 @@ -A text-console utility for video stream processing +A text-console utility for video stream processing diff -urP transcode-tree/pkg-descr transcode/pkg-descr --- transcode-tree/pkg-descr Sun Oct 13 12:18:43 2002 +++ transcode/pkg-descr Sun Oct 13 15:11:02 2002 @@ -18,4 +18,4 @@ and easy user extensibility to include other video/audio codecs or filetypes. -WWW: http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/ +WWW: http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/ diff -urP transcode-tree/pkg-plist transcode/pkg-plist --- transcode-tree/pkg-plist Sun Oct 13 12:18:43 2002 +++ transcode/pkg-plist Sun Oct 13 15:02:26 2002 @@ -1,80 +1,164 @@ -bin/tcmplex -bin/tcextract -bin/tcdecode -bin/tcscan -bin/tcdemux -bin/tccat -bin/tcprobe -bin/avimerge -bin/avisplit -bin/avifix -bin/avisync -bin/transcode -lib/transcode/import_nuv.so -%%WITH_AVIFILE%%lib/transcode/import_af6.so -lib/transcode/import_net.so -lib/transcode/import_avi.so -lib/transcode/import_mpeg2.so -lib/transcode/import_vdrac3.so -lib/transcode/import_ac3.so -lib/transcode/import_dv.so -lib/transcode/import_vob.so -lib/transcode/import_raw.so +lib/transcode/libioaux.so.0 +lib/transcode/xvid.cfg +%%WITH_XVID%%lib/transcode/libxvidcore.so +%%WITH_SDL%%lib/transcode/filter_preview.so +lib/transcode/import_xvid.so lib/transcode/import_yuv4mpeg.so lib/transcode/import_yuv.so +%%WITH_LIBXML2%%lib/transcode/import_xml.so +%%WITH_OGG%%lib/transcode/import_ogg.so +%%WITH_MJPEG%%lib/transcode/import_mjpeg.so +lib/transcode/import_vob.so +lib/transcode/import_vdrac3.so +lib/transcode/import_rawlist.so +lib/transcode/import_raw.so lib/transcode/import_nvrec.so -lib/transcode/import_lav.so +lib/transcode/import_nuv.so lib/transcode/import_null.so -lib/transcode/import_divx.so -%%WITH_LIBA52%%lib/transcode/a52_decore.so +lib/transcode/import_net.so +lib/transcode/import_mplayer.so +lib/transcode/import_mpeg2.so %%WITH_LAME%%lib/transcode/import_mp3.so -lib/transcode/import_dvd.so -%%WITH_IMAGEMAGICK%%lib/transcode/import_im.so +lib/transcode/import_lav.so %%WITH_IMAGEMAGICK%%lib/transcode/import_imlist.so -lib/transcode/import_mjpeg.so -lib/transcode/af6_decore.so -%%WITH_LIBXML2%%lib/transcode/import_xml.so -lib/transcode/filter_null.so -lib/transcode/filter_32detect.so -lib/transcode/filter_32drop.so +%%WITH_IMAGEMAGICK%%lib/transcode/import_im.so +%%WITH_IMAGEMAGICK%%lib/transcode/export_im.so +lib/transcode/import_dvd.so +lib/transcode/import_dv.so +lib/transcode/import_divx.so +lib/transcode/import_avi.so +%%WITH_AVIFILE%%lib/transcode/import_af6.so +lib/transcode/import_ac3.so lib/transcode/filter_yuy2toyv12.so -lib/transcode/filter_skip.so -lib/transcode/filter_cshift.so -lib/transcode/filter_mask.so -lib/transcode/filter_astat.so -lib/transcode/filter_cut.so -lib/transcode/filter_dnr.so +lib/transcode/filter_yuvdenoise.so lib/transcode/filter_xsharpen.so -lib/transcode/filter_smartdeinter.so lib/transcode/filter_testframe.so -lib/transcode/filter_dilyuvmmx.so -lib/transcode/filter_logo.so -lib/transcode/filter_divxkey.so -lib/transcode/filter_extsub.so -lib/transcode/filter_extsub2.so -lib/transcode/filter_resample.so lib/transcode/filter_test.so -%%WITH_SDL%%lib/transcode/filter_preview.so +lib/transcode/filter_tc_video.so +lib/transcode/filter_tc_audio.so lib/transcode/filter_subtitler.so -lib/transcode/export_null.so +lib/transcode/filter_smartdeinter.so +lib/transcode/filter_skip.so +lib/transcode/filter_resample.so +lib/transcode/filter_pv.so +lib/transcode/filter_null.so +lib/transcode/filter_normalize.so +lib/transcode/filter_mask.so +%%WITH_IMAGEMAGICK%%lib/transcode/filter_logo.so +lib/transcode/filter_ivtc.so +lib/transcode/filter_invert.so +lib/transcode/filter_fields.so +lib/transcode/filter_extsub2.so +lib/transcode/filter_extsub.so +lib/transcode/filter_dnr.so +lib/transcode/filter_divxkey.so +lib/transcode/filter_dilyuvmmx.so +lib/transcode/filter_decimate.so +lib/transcode/filter_cut.so +lib/transcode/filter_cshift.so +lib/transcode/filter_clone.so +lib/transcode/filter_astat.so +lib/transcode/filter_aclip.so +lib/transcode/filter_32drop.so +lib/transcode/filter_32detect.so +lib/transcode/filter_29to23.so +lib/transcode/export_xvidraw.so +lib/transcode/export_xvidcvs.so +lib/transcode/export_xvid.so lib/transcode/export_wav.so -%%WITH_AVIFILE%%lib/transcode/export_af6.so -lib/transcode/export_opendivx.so +lib/transcode/export_toolame.so +%%WITH_OGG%%lib/transcode/export_ogg.so +%%WITH_MJPEG%%lib/transcode/export_mjpeg.so lib/transcode/export_raw.so -lib/transcode/export_divx4.so -lib/transcode/export_divx4raw.so -lib/transcode/export_divx5.so -lib/transcode/export_pcm.so lib/transcode/export_ppm.so -lib/transcode/export_xvid.so -lib/transcode/export_xvidcvs.so +lib/transcode/export_pcm.so +%%WITH_XVID%%lib/transcode/export_opendivx.so +lib/transcode/export_null.so lib/transcode/export_net.so -lib/transcode/export_toolame.so -%%WITH_LIBDV%%lib/transcode/export_dvraw.so -%%WITH_LIBDV%%lib/transcode/export_dv.so lib/transcode/export_mpeg.so +lib/transcode/export_ffmpeg4.so %%WITH_FAME%%lib/transcode/export_fame.so -%%WITH_IMAGEMAGICK%%lib/transcode/export_im.so +lib/transcode/export_divx5.so +lib/transcode/export_divx4raw.so +lib/transcode/export_divx4.so +%%WITH_LIBDV%%lib/transcode/export_dvraw.so +%%WITH_LIBDV%%lib/transcode/export_dv.so +%%WITH_AVIFILE%%lib/transcode/export_af6.so lib/transcode/export_af6.conf -%%WITH_XVID%%lib/transcode/libxvidcore.so +lib/transcode/af6_decore.so +%%WITH_LIBA52%%lib/transcode/a52_decore.so @dirrm lib/transcode +share/doc/transcode/template.cfg.txt +share/doc/transcode/import_nvrec.txt +share/doc/transcode/import-xml.txt +share/doc/transcode/html/tc.png +share/doc/transcode/html/subtitles.html +share/doc/transcode/html/sub3-00000.png +share/doc/transcode/html/sub2-00000.png +share/doc/transcode/html/sub1-00000.png +share/doc/transcode/html/sub0-00000.png +share/doc/transcode/html/sorry.html +share/doc/transcode/html/pre.html +share/doc/transcode/html/post.html +share/doc/transcode/html/other.html +share/doc/transcode/html/options.html +share/doc/transcode/html/new.png +share/doc/transcode/html/mpeg.html +share/doc/transcode/html/modules.html +share/doc/transcode/html/misc.html +share/doc/transcode/html/mes7-00000.png +share/doc/transcode/html/mes6-00000.png +share/doc/transcode/html/mes5-00000.png +share/doc/transcode/html/mes4-00000.png +share/doc/transcode/html/mes0-00000.png +share/doc/transcode/html/intro.html +share/doc/transcode/html/index.html +share/doc/transcode/html/import_yuv4mpeg.html +share/doc/transcode/html/import_vob.html +share/doc/transcode/html/import_raw.html +share/doc/transcode/html/import_nuv.html +share/doc/transcode/html/import_null.html +share/doc/transcode/html/import_mpeg3.html +share/doc/transcode/html/import_mpeg2.html +share/doc/transcode/html/import_mp3.html +share/doc/transcode/html/import_dvd.html +share/doc/transcode/html/import_dv.html +share/doc/transcode/html/import_avi.html +share/doc/transcode/html/import_ac3.html +share/doc/transcode/html/filter.html +share/doc/transcode/html/faq.html +share/doc/transcode/html/export_raw.html +share/doc/transcode/html/export_null.html +share/doc/transcode/html/export_iv50.html +share/doc/transcode/html/export_divx.html +share/doc/transcode/html/export_af6.html +share/doc/transcode/html/dvd.html +share/doc/transcode/html/dv.html +share/doc/transcode/html/core.html +share/doc/transcode/html/cluster_guide.txt +share/doc/transcode/html/anim.html +share/doc/transcode/html/about.html +share/doc/transcode/html/Smart.html +share/doc/transcode/filter_yuvdenoise.txt +share/doc/transcode/filter_logo.txt +share/doc/transcode/filter_dnr.txt +share/doc/transcode/export_mpeg.txt +share/doc/transcode/clone.txt +share/doc/transcode/README.vcd +share/doc/transcode/README.sync +share/doc/transcode/README.rip +share/doc/transcode/README.cluster +@dirrm share/doc/transcode/html +@dirrm share/doc/transcode +bin/transcode +bin/tcscan +bin/tcprobe +bin/tcmplex +bin/tcextract +bin/tcdemux +bin/tcdecode +bin/tccat +bin/avisync +bin/avisplit +bin/avimerge +bin/avifix --- transcode.0.6.2cvs.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200210131430.g9DEU4XE062580>