<feed xmlns='http://www.w3.org/2005/Atom'>
<title>multitech-oe.git/packages/scummvm/files, branch multitech-corecdp-1.x</title>
<subtitle>Multi-Tech CoreCDP 1.x OpenEmbedded Tree</subtitle>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/'/>
<entry>
<title>rename packages/ to recipes/ per earlier agreement</title>
<updated>2009-03-17T18:32:59+00:00</updated>
<author>
<name>Denys Dmytriyenko</name>
<email>denis@denix.org</email>
</author>
<published>2009-03-17T18:32:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=709c4d66e0b107ca606941b988bad717c0b45d9b'/>
<id>709c4d66e0b107ca606941b988bad717c0b45d9b</id>
<content type='text'>
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816

Signed-off-by: Denys Dmytriyenko &lt;denis@denix.org&gt;
Acked-by: Mike Westerhof &lt;mwester@dls.net&gt;
Acked-by: Philip Balister &lt;philip@balister.org&gt;
Acked-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Acked-by: Marcin Juszkiewicz &lt;hrw@openembedded.org&gt;
Acked-by: Koen Kooi &lt;koen@openembedded.org&gt;
Acked-by: Frans Meulenbroeks &lt;fransmeulenbroeks@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816

Signed-off-by: Denys Dmytriyenko &lt;denis@denix.org&gt;
Acked-by: Mike Westerhof &lt;mwester@dls.net&gt;
Acked-by: Philip Balister &lt;philip@balister.org&gt;
Acked-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Acked-by: Marcin Juszkiewicz &lt;hrw@openembedded.org&gt;
Acked-by: Koen Kooi &lt;koen@openembedded.org&gt;
Acked-by: Frans Meulenbroeks &lt;fransmeulenbroeks@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>scummvm: fix the fact that none of the engines were builtin(so scummvm was useless) while keeping ENTERPRISE_DISTRO and minor fixes:</title>
<updated>2009-01-22T18:06:21+00:00</updated>
<author>
<name>Denis 'GNUtoo' Carikli</name>
<email>GNUtoo@no-log.org</email>
</author>
<published>2009-01-22T14:55:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=fbe9f3dae3a57556e20d76b4fb76cd14e2f83b61'/>
<id>fbe9f3dae3a57556e20d76b4fb76cd14e2f83b61</id>
<content type='text'>
*took the lacking scummvm/files/openmoko/openmoko-scummvm from the openmoko wiki
*no-strip.patch for the 0.12.0 version : if you let the Makefile strip,openembedded skip stripping and so it can't copy the unstripped binaries before stripping...and so it creates an empty -dbg package
*must check the stripping for the others versions
*explanation of the main fix: most of the recipes added something like this:
DEFINES="-DUNIX -DSCUMM_NEED_ALIGNMENT -DUSE_VORBIS -DUSE_ZLIB -DUSE_MPEG2 ${@base_conditional('ENTERPRISE_DISTRO', '1', '', '-DUSE_MAD -DUSE_MPEG2', d)}"
this did override the DEFINES...and so defines such as -DENABLE_ENGINENAME=STATIC_PLUGIN were no longer defined...and so none of the engines were built...
I removed it and remplaced it by
${@base_conditional('ENTERPRISE_DISTRO', '1', '--disable-mpeg2', '--with-mpeg2-prefix=${STAGING_LIBDIR}/..', d)} \
${@base_conditional('ENTERPRISE_DISTRO', '1', '--disable-mad', '--with-mad-prefix=${STAGING_LIBDIR}/..', d)} \
I've also tested it with ENTREPRISE_DISTRO = "1" in my local.conf here are what I checked:
**the configure log:
Checking for MAD... no
Checking for libmpeg2 &gt;= 0.3.2... no
**the run.do_configure.21902 shell script:
--disable-mpeg2 twice in oe_runconf and in do_configure ..no other matches for mpeg
same thing for --disable-mad
**the about menu inside scummvm says vorbis zlib in the "features compiled in" section
and there were no mention of mad,mp3 or mpeg2

*bump all PR
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
*took the lacking scummvm/files/openmoko/openmoko-scummvm from the openmoko wiki
*no-strip.patch for the 0.12.0 version : if you let the Makefile strip,openembedded skip stripping and so it can't copy the unstripped binaries before stripping...and so it creates an empty -dbg package
*must check the stripping for the others versions
*explanation of the main fix: most of the recipes added something like this:
DEFINES="-DUNIX -DSCUMM_NEED_ALIGNMENT -DUSE_VORBIS -DUSE_ZLIB -DUSE_MPEG2 ${@base_conditional('ENTERPRISE_DISTRO', '1', '', '-DUSE_MAD -DUSE_MPEG2', d)}"
this did override the DEFINES...and so defines such as -DENABLE_ENGINENAME=STATIC_PLUGIN were no longer defined...and so none of the engines were built...
I removed it and remplaced it by
${@base_conditional('ENTERPRISE_DISTRO', '1', '--disable-mpeg2', '--with-mpeg2-prefix=${STAGING_LIBDIR}/..', d)} \
${@base_conditional('ENTERPRISE_DISTRO', '1', '--disable-mad', '--with-mad-prefix=${STAGING_LIBDIR}/..', d)} \
I've also tested it with ENTREPRISE_DISTRO = "1" in my local.conf here are what I checked:
**the configure log:
Checking for MAD... no
Checking for libmpeg2 &gt;= 0.3.2... no
**the run.do_configure.21902 shell script:
--disable-mpeg2 twice in oe_runconf and in do_configure ..no other matches for mpeg
same thing for --disable-mad
**the about menu inside scummvm says vorbis zlib in the "features compiled in" section
and there were no mention of mad,mp3 or mpeg2

*bump all PR
</pre>
</div>
</content>
</entry>
<entry>
<title>scummvm: update to 0.12.0</title>
<updated>2008-11-17T13:17:26+00:00</updated>
<author>
<name>Koen Kooi</name>
<email>koen@openembedded.org</email>
</author>
<published>2008-11-17T13:17:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=60b43879c4de5c271b145468875e773585087f1c'/>
<id>60b43879c4de5c271b145468875e773585087f1c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>mtn2git: remove .mtn2git_empty files in non-empty directories</title>
<updated>2008-10-15T13:27:49+00:00</updated>
<author>
<name>Jan Luebbe</name>
<email>jluebbe@debian.org</email>
</author>
<published>2008-10-15T13:26:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=869ba9e1fb2237b75560feed13545a35f3c3569d'/>
<id>869ba9e1fb2237b75560feed13545a35f3c3569d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>scummvm: scummvm-targetcheck.patch accepted upstream</title>
<updated>2008-05-07T00:16:57+00:00</updated>
<author>
<name>Rolf Leggewie</name>
<email>oe-devel@rolf.leggewie.biz</email>
</author>
<published>2008-05-07T00:16:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=240334dbc0223851bec13f82861af36faa915646'/>
<id>240334dbc0223851bec13f82861af36faa915646</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>scummvm: send scummvm-targetcheck.patch upstream</title>
<updated>2008-05-07T00:11:04+00:00</updated>
<author>
<name>Rolf Leggewie</name>
<email>oe-devel@rolf.leggewie.biz</email>
</author>
<published>2008-05-07T00:11:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=ff67aad215649ba3fd8b036ca6079daa859c3b52'/>
<id>ff67aad215649ba3fd8b036ca6079daa859c3b52</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>scummvm: target check too restrictive.  Ease up.  Closes bugs 3522, 3594, 3572, 4028 and 2464.</title>
<updated>2008-05-06T23:26:29+00:00</updated>
<author>
<name>Rolf Leggewie</name>
<email>oe-devel@rolf.leggewie.biz</email>
</author>
<published>2008-05-06T23:26:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=84abf8f3967d3d15313d5967f2814a8fc8fb2384'/>
<id>84abf8f3967d3d15313d5967f2814a8fc8fb2384</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fic-gta0? : renamed fic-gta0? to om-gta0? to reflect true name of device</title>
<updated>2008-03-26T13:59:50+00:00</updated>
<author>
<name>Graeme Gregory</name>
<email>dp@xora.org.uk</email>
</author>
<published>2008-03-26T13:59:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=9cb14015c6fb87732da5bb5f35b45fb1a0774a3f'/>
<id>9cb14015c6fb87732da5bb5f35b45fb1a0774a3f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>scummvm-0.9.1: update packaging, make default, openmoko integration</title>
<updated>2007-08-19T11:23:57+00:00</updated>
<author>
<name>Philipp Zabel</name>
<email>philipp.zabel@gmail.com</email>
</author>
<published>2007-08-19T11:23:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=3749fb97fb897e5ce64df385a0940a71c7fd3e92'/>
<id>3749fb97fb897e5ce64df385a0940a71c7fd3e92</id>
<content type='text'>
* remove DEFAULT_PREFERENCE="-1"
* don't strip executable during install, we do that while packaging
* add openmoko-scummvm script for fic-gta01 and scummvm.desktop file.
* package the modern theme by default - maybe this should go
  into a separate scummvm-theme package, RRECOMMENDED by scummvm
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* remove DEFAULT_PREFERENCE="-1"
* don't strip executable during install, we do that while packaging
* add openmoko-scummvm script for fic-gta01 and scummvm.desktop file.
* package the modern theme by default - maybe this should go
  into a separate scummvm-theme package, RRECOMMENDED by scummvm
</pre>
</div>
</content>
</entry>
<entry>
<title>scummvm/files/sh3-arch-0.9.0+.patch: Patch for sh3 to &gt; 0.9.0 scummvm</title>
<updated>2006-07-01T18:42:50+00:00</updated>
<author>
<name>Kristoffer Ericson</name>
<email>kristoffer_e1@hotmail.com</email>
</author>
<published>2006-07-01T18:42:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=b489e053a8f6288f335a945f0f7780cafaa5e3f1'/>
<id>b489e053a8f6288f335a945f0f7780cafaa5e3f1</id>
<content type='text'>
* Addition of sh3 arch, should work for after also.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Addition of sh3 arch, should work for after also.
</pre>
</div>
</content>
</entry>
</feed>
