Author: pebender
Date: Wed Jul 15 13:49:53 2009
New Revision: 5168

Added:
     
trunk/gar-minimyth/script/utils/transcode/files/transcode-1.1.2-configure.patch
Removed:
     
trunk/gar-minimyth/script/utils/transcode/files/transcode-1.0.7-configure.patch
Modified:
    trunk/gar-minimyth/html/minimyth/document-changelog.txt
    trunk/gar-minimyth/script/utils/transcode/Makefile
    trunk/gar-minimyth/script/utils/transcode/checksums
    trunk/gar-minimyth/script/utils/transcode/files/config.cache.i386
    trunk/gar-minimyth/script/utils/transcode/files/config.cache.x86_64

Log:
- Updated package utils/transcode.



Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt     (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt     Wed Jul 15  
13:49:53 2009
@@ -1,7 +1,7 @@
  MiniMyth Changelog

   
--------------------------------------------------------------------------------
-Changes since 68 (2009-07-14):
+Changes since 68 (2009-07-15):

  Current MythTV versions
      MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch  
svn 16082 and
@@ -50,6 +50,7 @@
      Updated system/lirc.
      Updated system/udev.
      Updated utils/ed.
+    Updated utils/transcode.
      Updated X11/ratpoison.
      Updated xorg-7.4/libX11.


Modified: trunk/gar-minimyth/script/utils/transcode/Makefile
==============================================================================
--- trunk/gar-minimyth/script/utils/transcode/Makefile  (original)
+++ trunk/gar-minimyth/script/utils/transcode/Makefile  Wed Jul 15 13:49:53  
2009
@@ -1,9 +1,9 @@
  GARNAME = transcode
-GARVERSION = 1.0.7
+GARVERSION = 1.1.2
  CATEGORIES = utils
-MASTER_SITES  = http://fromani.exit1.org/
-MASTER_SITES += http://www.kraymer.mynetcologne.de/
-DISTFILES = $(DISTNAME).tar.bz2 config.cache.$(GARCH_FAMILY)
+MASTER_SITES = http://download.berlios.de/tcforge/
+DISTFILES  = $(DISTNAME).tar.bz2
+DISTFILES += config.cache.$(GARCH_FAMILY)
  PATCHFILES = $(DISTNAME)-configure.patch
  LICENSE = GPL2

@@ -22,28 +22,29 @@
        --x-include=$(DESTDIR)$(includedir) \
        --x-libraries=$(DESTDIR)$(libdir) \
        --disable-static \
+       --enable-static \
        --enable-mmx \
        --enable-3dnow \
        --enable-sse \
        --enable-sse2 \
        --disable-altivec \
-       --enable-shared \
-       --enable-fast-install \
-       --enable-libtool-lock \
-       --disable-libavcodec-static \
+       --enable-ffmpeg \
        --enable-libavcodec \
+       --enable-libavformat \
        --enable-libmpeg2 \
+       --disable-experimental \
+       --disable-deprecated \
        --enable-statbuffer \
-       --disable-netstream \
        --disable-v4l \
        --disable-bktr \
        --disable-sunau \
        --disable-oss \
-       --disable-ibp \
+       --disable-alsa \
        --disable-libpostproc \
        --disable-freetype2 \
-       --disable-avifile \
        --enable-lame \
+       --disable-xvid \
+       --disable-x264 \
        --enable-ogg \
        --enable-vorbis \
        --enable-theora \
@@ -53,34 +54,38 @@
        --disable-libquicktime \
        --enable-lzo \
        --enable-a52 \
-       --enable-a52-default-decoder \
-       --disable-libmpeg3 \
+       --disable-faac \
        --disable-libxml2 \
+       --disable-ibp \
        --disable-mjpegtools \
        --disable-sdl \
-       --disable-libfame \
        --disable-imagemagick \
        --disable-libjpegmmx \
        --disable-libjpeg \
        --disable-bsdav \
        --disable-iconv \
-       --disable-xio \
+       --disable-pv3 \
+       --disable-nuv \
        --disable-warnings-as-errors \
-       --with-gnu-ld \
        --with-x \
-       --with-libavcodec-includes=$(PKG_CONFIG_SYSROOT_DIR)`pkg-config  
--variable=includedir libavcodec` \
-       --with-libavcodec-libs=$(PKG_CONFIG_SYSROOT_DIR)`pkg-config  
--variable=includedir libavcodec` \
-       --with-libpostproc-includes=$(PKG_CONFIG_SYSROOT_DIR)`pkg-config  
--variable=includedir libpostproc` \
-       --with-libpostproc-libs=$(PKG_CONFIG_SYSROOT_DIR)`pkg-config  
--variable=includedir libpostproc` \
-       --with-default-xvid=xvid4 \
+       --with-gnu-ld \
+       --with-libmpeg2-prefix=$(DESTDIR)$(prefix) \
+       --with-libmpeg2-includes=$(DESTDIR)$(includedir) \
+       --with-libmpeg2-libs=$(DESTDIR)$(libdir) \
        --with-lame-prefix=$(DESTDIR)$(prefix) \
        --with-lame-includes=$(DESTDIR)$(includedir) \
        --with-lame-libs=$(DESTDIR)$(libdir) \
+       --with-lzo-prefix=$(DESTDIR)$(prefix) \
+       --with-lzo-includes=$(DESTDIR)$(includedir) \
+       --with-lzo-libs=$(DESTDIR)$(libdir) \
+       --with-a52-prefix=$(DESTDIR)$(prefix) \
+       --with-a52-includes=$(DESTDIR)$(includedir) \
+       --with-a52-libs=$(DESTDIR)$(libdir) \
        --with-mod-path=$(libdir)/transcode

  include ../../gar.mk

-CFLAGS += `pkg-config --cflags libavcodec` `pkg-config --libs libavcodec`
+#CFLAGS += `pkg-config --cflags libavcodec` `pkg-config --libs libavcodec`

  extract-config.cache.$(GARCH_FAMILY):
        @cp $(DOWNLOADDIR)/config.cache.$(GARCH_FAMILY) $(WORKSRC)/config.cache
@@ -96,5 +101,6 @@
        @$(MAKECOOKIE)

  post-install:
+       @rm -rf $(DESTDIR)$(libdir)/transcode/*.a
        @rm -rf $(DESTDIR)$(libdir)/transcode/*.la
        @$(MAKECOOKIE)

Modified: trunk/gar-minimyth/script/utils/transcode/checksums
==============================================================================
--- trunk/gar-minimyth/script/utils/transcode/checksums (original)
+++ trunk/gar-minimyth/script/utils/transcode/checksums Wed Jul 15 13:49:53  
2009
@@ -1,4 +1,4 @@
-48a57f36861450dde78d6a1ad5edf99f  download/transcode-1.0.7.tar.bz2
-b60da497b774086abf3525d0acf4854a  download/transcode-1.0.7-configure.patch
-5203436aec962a018494642e03852d10  download/config.cache.i386
-5203436aec962a018494642e03852d10  download/config.cache.x86_64
+753f7ee4ae154aac1527ceda9d085e65  download/transcode-1.1.2.tar.bz2
+7d6c4a2ccd27dda5577228621713c4cb  download/transcode-1.1.2-configure.patch
+75bdde1538ae7b9d40c368fa746327e3  download/config.cache.i386
+75bdde1538ae7b9d40c368fa746327e3  download/config.cache.x86_64

Modified: trunk/gar-minimyth/script/utils/transcode/files/config.cache.i386
==============================================================================
--- trunk/gar-minimyth/script/utils/transcode/files/config.cache.i386    
(original)
+++ trunk/gar-minimyth/script/utils/transcode/files/config.cache.i386   Wed  
Jul 15 13:49:53 2009
@@ -1,7 +1,3 @@
-ac_cv_c_bigendian=no
  ac_cv_func_malloc_0_nonnull=yes
-ac_cv_func_lstat_dereferences_slashed_symlink=yes
-ac_cv_func_stat_empty_string_bug=no
-ac_cv_func_strcoll_works=yes
  lt_cv_dlopen_self=yes
  lt_cv_dlopen_self_static=yes

Modified:  
trunk/gar-minimyth/script/utils/transcode/files/config.cache.x86_64
==============================================================================
--- trunk/gar-minimyth/script/utils/transcode/files/config.cache.x86_64  
(original)
+++ trunk/gar-minimyth/script/utils/transcode/files/config.cache.x86_64 Wed  
Jul 15 13:49:53 2009
@@ -1,7 +1,3 @@
-ac_cv_c_bigendian=no
  ac_cv_func_malloc_0_nonnull=yes
-ac_cv_func_lstat_dereferences_slashed_symlink=yes
-ac_cv_func_stat_empty_string_bug=no
-ac_cv_func_strcoll_works=yes
  lt_cv_dlopen_self=yes
  lt_cv_dlopen_self_static=yes

Added:  
trunk/gar-minimyth/script/utils/transcode/files/transcode-1.1.2-configure.patch
==============================================================================
--- (empty file)
+++  
trunk/gar-minimyth/script/utils/transcode/files/transcode-1.1.2-configure.patch 
 
Wed Jul 15 13:49:53 2009
@@ -0,0 +1,15 @@
+diff -Naur transcode-1.1.2-old/configure.in  
transcode-1.1.2-new/configure.in
+--- transcode-1.1.2-old/configure.in   2009-03-28 01:39:07.000000000 -0700
++++ transcode-1.1.2-new/configure.in   2009-07-15 13:22:17.000000000 -0700
+@@ -871,8 +871,9 @@
+     [lame_version="`./conftest$ac_exeext`"],
+     [AC_MSG_RESULT([failed])
+      TC_PKG_ERROR(lame, lame.h, yes, lame, [http://www.mp3dev.org/],
+-      [cannot compile and run a test program])],,
+-    [AC_MSG_RESULT([cross compiling; assumed OK...])])
++      [cannot compile and run a test program])],
++    [echo $ac_n "cross compiling; assumed OK... $ac_c"
++    lame_version=398])
+   CFLAGS="$ac_save_CFLAGS"
+   LIBS="$ac_save_LIBS"
+

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to