summaryrefslogtreecommitdiff
path: root/packages/scummvm
AgeCommit message (Collapse)AuthorFiles
2009-01-22scummvm: fix the fact that none of the engines were builtin(so scummvm was ↵Denis 'GNUtoo' Carikli9
useless) while keeping ENTERPRISE_DISTRO and minor fixes: *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 >= 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
2008-11-17scummvm: update to 0.12.0Koen Kooi3
2008-11-17scummvm: add missing enterprise parentheseKoen Kooi1
2008-10-29bluemchen wiese: Allow to disable certain ugly packages globallyHolger Hans Peter Freyther5
Adopt the notion of gstreamer and allow to easily not build certain ugly packages. People are constraints to not live on a bluemchen wiese can set ENTERPRISE_DISTRO="1" in their config and get ugly packages removed. This is implemented by a set of packages in the BBMASK (as a safety net) and by using base conditional to onl conditonally add ugly packages.
2008-10-18bb files: Revert the introduction of FILE_PRHolger Hans Peter Freyther1
This is a partial revert of aa03004ace2fabb135a6208ef8c2d2b312aa7b0b. The approach that was taken leads to disagreement and the change was pushed too early. DISTRO_PR is going to say and will be used inside the package creation. There will be more disucssion on the list about where to continue from here.
2008-10-15[PR] Change PR to FILE_PR and intro PR as FILE_PR + DISTRO_PRHolger Hans Peter Freyther1
Allow a distribution to globally bump the PR of every package this is useful when there was a change in the toolchain and every package is going to be different. find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR="/"FILE_PR ="/ {} \; find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR ="/"FILE_PR ="/ {} \; Acked-By: Koen Kooi <koen@openembedded.org>
2008-10-15mtn2git: remove .mtn2git_empty files in non-empty directoriesJan Luebbe4
2008-05-07scummvm: scummvm-targetcheck.patch accepted upstreamRolf Leggewie1
2008-05-07scummvm: send scummvm-targetcheck.patch upstreamRolf Leggewie1
2008-05-06scummvm: target check too restrictive. Ease up. Closes bugs 3522, 3594, ↵Rolf Leggewie2
3572, 4028 and 2464.
2008-03-26fic-gta0? : renamed fic-gta0? to om-gta0? to reflect true name of deviceGraeme Gregory2
2007-09-04merge of 'db3553a557f70630b0299ead528cf8868b9d65fe'Marcin Juszkiewicz1
and 'febd6fbea9748c083f400f53d4ed18480207fd5a'
2007-09-04scummvm: give proper path to sdl-configMarcin Juszkiewicz1
configure script check for GIVEN_PATH and GIVEN_PATH/bin
2007-09-04scummvm: Put it back the (broken) way it was. Changing to ↵Rod Whitby1
STAGING_BINDIR_CROSS doesn't help, cause that doesn't end in a 'bin' directory, and the configure script in scummvm adds a 'bin' to the end of the prefix given. Someone else who cares will need to fix it properly.
2007-09-03scummvm: Fixed the staging dir location. Thx hrw for the tip.Rod Whitby1
2007-08-19scummvm-0.9.1: update packaging, make default, openmoko integrationPhilipp Zabel5
* 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
2007-08-19scummvm.inc: improve DESCRIPTION, add HOMEPAGEPhilipp Zabel1
2007-08-18scummvm: use autotools' do_install, improve packagingPhilipp Zabel1
2007-05-24scummvm: introduce SOURCEFORGE_MIRROR variable. some minor clean-up.Rolf Leggewie2
2007-05-24scummvm: add 0.9.1 with default_preference = -1 since the sh3 patch has been ↵Koen Kooi1
dropped
2007-05-24scummvm: catch up with libmpeg2 removalKoen Kooi4
2007-04-29scummvm: point to the right path for the sdl configKoen Kooi1
2006-12-31Split STAGING_BINDIR into CROSS and NATIVE versions. This means there is no ↵Richard Purdie1
need to rename -config scripts and multimachine won't break with binconfig.bbclass. ***NOTE: This change will require staging to be rebuilt***
2006-12-31remove extra whitespace at end-of-line in about 900 bb files.Rolf Leggewie2
2006-08-28scummvm.inc: remove Troll technologyKoen Kooi1
2006-08-28scummvm 0.9.0: enable all engines to get rid of undefined symbols*Koen Kooi1
* and be able to play more games
2006-08-05packages: sed -i s/^"include "/"require "/ */*.bb GNU sed rocks!Holger Freyther3
Use require for the BitBake files within packages. In contrast to the conf files the authors of these files expected these files to be included.
2006-07-01merge of 44f2e80d1a5751741be6c6f1fd4928f3d53a32b2Koen Kooi1
and 7adb1db79c0e0fca09a5d25db51f5e61e1b9f043
2006-07-01scummvm/scummvm_0.6.1b.bb: Addition of tremor patchKristoffer Ericson1
* Addition of tremor patch to 0.6.1b as this was removed from the include file (no longer needed for new versions)
2006-07-01scummvm 0.9.0: depend on libvorbis since the tremor patch hasn't been ↵Koen Kooi1
forward ported yet
2006-07-01scummvm/files/sh3-arch-0.9.0+.patch: Patch for sh3 to > 0.9.0 scummvmKristoffer Ericson1
* Addition of sh3 arch, should work for after also.
2006-07-01scummvm/scummvm_0.9.0: Addition of new scummvm fileKristoffer Ericson2
* New scummvm file (upgrade from 0.6.1b) scummvm/scummvm.inc: Change of sourceforge mirror * Change of sourceforge mirror, heanet.dl didnt have scummvm.
2006-07-01scummvm/files/gcc-4.x.x-accept.patch: Makes scummvm approve of gcc 4.x.xKristoffer Ericson4
* Adds gcc 4.x.x to accept list scummvm/files/sh3-linux-new-arch.patch: Makes scummvm know of sh3 * Adds linux-sh3 to the configure script of known archs scummvm/files/tail-obselete-fix.patch: sets -n 1 instead of -1 * Sets tail -n 1 instead of -1, kept for future reference.
2005-08-04remove espgs-native depends from evinceKoen Kooi2
2005-07-11Random syntax fixes. R_VALUE must be quotedHolger Freyther1
2005-06-30import clean BK tree at cset 1.3670Koen Kooi11
2005-04-17Add opie-scummvm: a GUI for scummvm. Courtesy of _law_ @ #opie.deMatthias Hentges1
BKrev: 4262cdc2rbk9wHFmFVg5GCLFQdI7yg
2005-02-23Merge bk://oe-devel.bkbits.net/openembeddednslu2-linux.adm@bkbits.net5
into bkbits.net:/repos/n/nslu2-linux/openembedded 2005/02/23 15:43:21+01:00 uni-frankfurt.de!mickeyl Merge bk://oe-devel@oe-devel.bkbits.net/openembedded into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages 2005/02/23 15:13:42+01:00 (none)!koen scummvm_0.6.1b.bb, scummvm.inc, scummvm-qpe_0.6.1b.bb: force libsdl-qpe with qpe build 2005/02/23 14:40:23+01:00 (none)!koen Merge bk://oe-devel@oe-devel.bkbits.net/openembedded into lieve.(none):/data/build/oe/clean-tree/openembedded 2005/02/23 14:39:51+01:00 (none)!koen split scummvm into scummvm.inc, scummvm-qpe.bb and scummvm.bb 2005/02/23 14:01:29+01:00 uni-frankfurt.de!mickeyl re-enable non-inlining of opie images into libqpe now that decoration drawing has been fixed upstream. BKrev: 421ca3dcb9j0-UXXcX77r2f2sdRsEw
2005-02-23Merge bk://oe-devel.bkbits.net/openembeddednslu2-linux.adm@bkbits.net2
into bkbits.net:/repos/n/nslu2-linux/openembedded 2005/02/23 12:40:33+01:00 uni-frankfurt.de!mickeyl Merge bk://oe-devel@oe-devel.bkbits.net/openembedded into gandalf.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages 2005/02/23 12:36:37+01:00 uni-frankfurt.de!mickeyl Merge bk://oe-devel@oe-devel.bkbits.net/openembedded into gandalf.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages 2005/02/23 11:34:13+01:00 mn-solutions.de!schurig Merge http://oe-devel@openembedded.bkbits.net/openembedded into mnz66.mn-solutions.de:/usr/src/oe/p 2005/02/23 11:33:31+01:00 mn-solutions.de!schurig fix installation stage 2005/02/23 09:27:44+00:00 (none)!xora New upstream version of kismet, fixes for compilation problems, and change of maintainer with Brunos permission 2005/02/23 01:11:25+01:00 uni-frankfurt.de!mickeyl add a sharprom-compatible distro configuration. relies on an external 2.95.3 toolchain (for now... until someone adds it to OE) and needs further work. It's a start for someone interested though. 2005/02/23 01:09:23+01:00 uni-frankfurt.de!mickeyl bump cvsdate on oz-3.5.3 2005/02/22 17:37:44-06:00 ti.com!kergoth Fix the quilt PATCHCMD to stop rampantly chmod'ing, which made the CVS directories not executable, thereby screwing up the ability to rm -rf tmp. Thanks to holger freyther for pointing it out. BKrev: 421c7b62hBWfitoVhb3IO3ZT5nS71A
2004-12-09Merge oe-devel@oe-devel.bkbits.net:openembeddedChris Larson7
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA