Author: pebender
Date: Sat Jul 18 06:03:51 2009
New Revision: 5185
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/lib/ffmpeg/Makefile
trunk/gar-minimyth/script/lib/ffmpeg/checksums
trunk/gar-minimyth/script/lib/ffmpeg/files/ffmpeg.patch.gar
Log:
- Fixed a bug in lib/ffmpeg's GAR patch that prevented it from using
dependent packages *-config files during configure..
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 Sat Jul 18
06:03:51 2009
@@ -43,6 +43,8 @@
- Fixed an error in mm_CFLAGS when mm_GARCH=c3.
- Disabled auto vectorization (-fno-tree-vectorize) as is can produce
broken code or slow code.
+ - Fixed a bug in lib/ffmpeg's GAR patch that prevented it from using
+ dependent packages *-config files during configure..
Removed packages
Removed disk/e2fsprogs (replaced by utils/util-linux-ng).
Modified: trunk/gar-minimyth/script/lib/ffmpeg/Makefile
==============================================================================
--- trunk/gar-minimyth/script/lib/ffmpeg/Makefile (original)
+++ trunk/gar-minimyth/script/lib/ffmpeg/Makefile Sat Jul 18 06:03:51 2009
@@ -142,7 +142,7 @@
--disable-stripping
CONFIGURE_ENV = \
- SDL_CONFIG='/bin/false'
+ SDL_CONFIG="false"
GAR_EXTRA_CONF += mediaplayers/mplayer-svn/package-api.mk
include ../../gar.mk
Modified: trunk/gar-minimyth/script/lib/ffmpeg/checksums
==============================================================================
--- trunk/gar-minimyth/script/lib/ffmpeg/checksums (original)
+++ trunk/gar-minimyth/script/lib/ffmpeg/checksums Sat Jul 18 06:03:51 2009
@@ -1,2 +1,2 @@
d275908d1b8f2a5f1f81427d38afb2e3 download/ffmpeg-h264_vaapi_take_19.patch
-13b5b83c1c9048205aaf09c4844169df download/ffmpeg.patch.gar
+69ede8c2540b1c527ee54f82786f928c download/ffmpeg.patch.gar
Modified: trunk/gar-minimyth/script/lib/ffmpeg/files/ffmpeg.patch.gar
==============================================================================
--- trunk/gar-minimyth/script/lib/ffmpeg/files/ffmpeg.patch.gar (original)
+++ trunk/gar-minimyth/script/lib/ffmpeg/files/ffmpeg.patch.gar Sat Jul 18
06:03:51 2009
@@ -6,13 +6,13 @@
shift 4
disable $cfg
- check_cmd ${pkg}-config --version
-+ check_cmd @GAR_destdir@@GAR_bindir@/${pkg}-config --version
++ check_cmd @GAR_DESTDIR@@GAR_bindir@/${pkg}-config --version
err=$?
if test "$err" = 0; then
- temp_cflags $(${pkg}-config --cflags)
- temp_extralibs $(${pkg}-config --libs)
-+ temp_cflags $(@GAR_destdir@@GAR_bindir@/${pkg}-config --cflags)
-+ temp_extralibs $(@GAR_destdir@@GAR_bindir@/${pkg}-config --libs)
++ temp_cflags $(@GAR_DESTDIR@@GAR_bindir@/${pkg}-config --cflags)
++ temp_extralibs $(@GAR_DESTDIR@@GAR_bindir@/${pkg}-config --libs)
check_lib "$@" $header $func && enable $cfg
fi
return $err
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---