* [meta-oe/meta-multimedia 0/2] games preparations
@ 2013-01-09 1:00 Andreas Müller
2013-01-09 1:00 ` [meta-oe/meta-multimedia 1/2] openal-soft: initial add 1.15.1 Andreas Müller
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Andreas Müller @ 2013-01-09 1:00 UTC (permalink / raw)
To: openembedded-devel
While preparing / testing some games I would like to see these in common layers
Andreas Müller (2):
openal-soft: initial add 1.15.1
physfs: initial add 2.0.3
.../openal/openal-soft_1.15.1.bb | 20 ++++++++++++++++++++
meta-oe/recipes-support/physfs/physfs_2.0.3.bb | 11 +++++++++++
2 files changed, 31 insertions(+), 0 deletions(-)
create mode 100644 meta-multimedia/recipes-multimedia/openal/openal-soft_1.15.1.bb
create mode 100644 meta-oe/recipes-support/physfs/physfs_2.0.3.bb
--
1.7.4.4
^ permalink raw reply [flat|nested] 12+ messages in thread
* [meta-oe/meta-multimedia 1/2] openal-soft: initial add 1.15.1
2013-01-09 1:00 [meta-oe/meta-multimedia 0/2] games preparations Andreas Müller
@ 2013-01-09 1:00 ` Andreas Müller
2013-01-09 1:00 ` [meta-oe/meta-multimedia 2/2] physfs: initial add 2.0.3 Andreas Müller
2013-01-14 13:34 ` [meta-oe/meta-multimedia 0/2] games preparations Paul Eggleton
2 siblings, 0 replies; 12+ messages in thread
From: Andreas Müller @ 2013-01-09 1:00 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
.../openal/openal-soft_1.15.1.bb | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
create mode 100644 meta-multimedia/recipes-multimedia/openal/openal-soft_1.15.1.bb
diff --git a/meta-multimedia/recipes-multimedia/openal/openal-soft_1.15.1.bb b/meta-multimedia/recipes-multimedia/openal/openal-soft_1.15.1.bb
new file mode 100644
index 0000000..81de6e7
--- /dev/null
+++ b/meta-multimedia/recipes-multimedia/openal/openal-soft_1.15.1.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "OpenAL is a cross-platform 3D audio API"
+HOMEPAGE = "http://kcat.strangesoft.net/openal.html"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=facc3a8f452930083bbb95d82b989c35"
+
+inherit cmake
+
+DEPENDS = "${@base_contains('DISTRO_FEATURES', 'alsa', 'alsa-lib', '', d)} \
+ ${@base_contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '', d)} \
+ "
+
+SRC_URI = "http://kcat.strangesoft.net/openal-releases/${PN}-${PV}.tar.bz2"
+SRC_URI[md5sum] = "ea83dec3b9655a27d28e7bc7cae9cd71"
+SRC_URI[sha256sum] = "0e29a162f0841ccb4135ce76e92e8a704589b680a85eddf76f898de5236eb056"
+
+EXTRA_OECMAKE = "-DALSA=${@base_contains('DISTRO_FEATURES', 'alsa', 'TRUE', 'FALSE', d)} \
+ -DPULSEAUDIO=${@base_contains('DISTRO_FEATURES', 'pulseaudio', 'TRUE', 'FALSE', d)} \
+ "
+
+FILES_${PN} += "${datadir}/openal"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [meta-oe/meta-multimedia 2/2] physfs: initial add 2.0.3
2013-01-09 1:00 [meta-oe/meta-multimedia 0/2] games preparations Andreas Müller
2013-01-09 1:00 ` [meta-oe/meta-multimedia 1/2] openal-soft: initial add 1.15.1 Andreas Müller
@ 2013-01-09 1:00 ` Andreas Müller
2013-01-14 13:34 ` [meta-oe/meta-multimedia 0/2] games preparations Paul Eggleton
2 siblings, 0 replies; 12+ messages in thread
From: Andreas Müller @ 2013-01-09 1:00 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
meta-oe/recipes-support/physfs/physfs_2.0.3.bb | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
create mode 100644 meta-oe/recipes-support/physfs/physfs_2.0.3.bb
diff --git a/meta-oe/recipes-support/physfs/physfs_2.0.3.bb b/meta-oe/recipes-support/physfs/physfs_2.0.3.bb
new file mode 100644
index 0000000..641d7ec
--- /dev/null
+++ b/meta-oe/recipes-support/physfs/physfs_2.0.3.bb
@@ -0,0 +1,11 @@
+DESCRIPTION = "PhysicsFS is a library to provide abstract access to various archives"
+HOMEAPAGE = "http://icculus.org/physfs"
+LICENSE = "Zlib"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5d94e3eaaa10b00ca803ba35a3e87cde"
+DEPENDS = "readline zlib"
+
+inherit cmake
+
+SRC_URI = "http://icculus.org/${PN}/downloads/${PN}-${PV}.tar.bz2"
+SRC_URI[md5sum] = "c2c727a8a8deb623b521b52d0080f613"
+SRC_URI[sha256sum] = "ca862097c0fb451f2cacd286194d071289342c107b6fe69079c079883ff66b69"
--
1.7.4.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [meta-oe/meta-multimedia 0/2] games preparations
2013-01-09 1:00 [meta-oe/meta-multimedia 0/2] games preparations Andreas Müller
2013-01-09 1:00 ` [meta-oe/meta-multimedia 1/2] openal-soft: initial add 1.15.1 Andreas Müller
2013-01-09 1:00 ` [meta-oe/meta-multimedia 2/2] physfs: initial add 2.0.3 Andreas Müller
@ 2013-01-14 13:34 ` Paul Eggleton
2013-01-14 13:38 ` Burton, Ross
2013-01-14 14:36 ` Marko Lindqvist
2 siblings, 2 replies; 12+ messages in thread
From: Paul Eggleton @ 2013-01-14 13:34 UTC (permalink / raw)
To: Andreas Müller; +Cc: openembedded-devel
On Wednesday 09 January 2013 02:00:37 Andreas Müller wrote:
> While preparing / testing some games I would like to see these in common
> layers
>
> Andreas Müller (2):
> openal-soft: initial add 1.15.1
> physfs: initial add 2.0.3
>
> .../openal/openal-soft_1.15.1.bb | 20
> ++++++++++++++++++++ meta-oe/recipes-support/physfs/physfs_2.0.3.bb |
> 11 +++++++++++ 2 files changed, 31 insertions(+), 0 deletions(-)
> create mode 100644
> meta-multimedia/recipes-multimedia/openal/openal-soft_1.15.1.bb create mode
> 100644 meta-oe/recipes-support/physfs/physfs_2.0.3.bb
There is a meta-games FYI, I think this is possibly where these recipes ought
to have gone.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-oe/meta-multimedia 0/2] games preparations
2013-01-14 13:34 ` [meta-oe/meta-multimedia 0/2] games preparations Paul Eggleton
@ 2013-01-14 13:38 ` Burton, Ross
2013-01-14 13:46 ` Andreas Müller
2013-01-14 13:50 ` Samuel Stirtzel
2013-01-14 14:36 ` Marko Lindqvist
1 sibling, 2 replies; 12+ messages in thread
From: Burton, Ross @ 2013-01-14 13:38 UTC (permalink / raw)
To: openembedded-devel
On 14 January 2013 13:34, Paul Eggleton <paul.eggleton@linux.intel.com> wrote:
> There is a meta-games FYI, I think this is possibly where these recipes ought
> to have gone.
Agreed, these are gaming-specific and not generically "multimedia".
Ross
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-oe/meta-multimedia 0/2] games preparations
2013-01-14 13:38 ` Burton, Ross
@ 2013-01-14 13:46 ` Andreas Müller
2013-01-14 13:50 ` Samuel Stirtzel
1 sibling, 0 replies; 12+ messages in thread
From: Andreas Müller @ 2013-01-14 13:46 UTC (permalink / raw)
To: Burton, Ross; +Cc: openembedded-devel
On Mon, Jan 14, 2013 at 2:38 PM, Burton, Ross <ross.burton@intel.com> wrote:
> On 14 January 2013 13:34, Paul Eggleton <paul.eggleton@linux.intel.com> wrote:
>> There is a meta-games FYI, I think this is possibly where these recipes ought
>> to have gone.
>
> Agreed, these are gaming-specific and not generically "multimedia".
>
> Ross
The idea was to give these libraries a wider audience for
review/testing than meta-games has.
Andreas
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-oe/meta-multimedia 0/2] games preparations
2013-01-14 13:38 ` Burton, Ross
2013-01-14 13:46 ` Andreas Müller
@ 2013-01-14 13:50 ` Samuel Stirtzel
2013-01-14 14:07 ` Paul Eggleton
1 sibling, 1 reply; 12+ messages in thread
From: Samuel Stirtzel @ 2013-01-14 13:50 UTC (permalink / raw)
To: openembedded-devel
2013/1/14 Burton, Ross <ross.burton@intel.com>:
> On 14 January 2013 13:34, Paul Eggleton <paul.eggleton@linux.intel.com> wrote:
>> There is a meta-games FYI, I think this is possibly where these recipes ought
>> to have gone.
>
> Agreed, these are gaming-specific and not generically "multimedia".
Is this a suggestion that other similar recipes already in meta-oe and
oe-core should be moved there as well?
To be specific SDL comes to my mind...
--
Regards
Samuel
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-oe/meta-multimedia 0/2] games preparations
2013-01-14 13:50 ` Samuel Stirtzel
@ 2013-01-14 14:07 ` Paul Eggleton
0 siblings, 0 replies; 12+ messages in thread
From: Paul Eggleton @ 2013-01-14 14:07 UTC (permalink / raw)
To: Samuel Stirtzel; +Cc: openembedded-devel
On Monday 14 January 2013 14:50:29 Samuel Stirtzel wrote:
> 2013/1/14 Burton, Ross <ross.burton@intel.com>:
> > On 14 January 2013 13:34, Paul Eggleton <paul.eggleton@linux.intel.com>
wrote:
> >> There is a meta-games FYI, I think this is possibly where these recipes
> >> ought to have gone.
> >
> > Agreed, these are gaming-specific and not generically "multimedia".
>
> Is this a suggestion that other similar recipes already in meta-oe and
> oe-core should be moved there as well?
> To be specific SDL comes to my mind...
Whilst SDL is mostly intended for games I know of at least one product using
it to provide a standard UI, so it may be a special case.
To answer the general question though, yes there is the intention that some of
the recipes in the meta-oe layer should move out to more specific layers where
appropriate; it's just that nobody has got around to doing that yet.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-oe/meta-multimedia 0/2] games preparations
2013-01-14 13:34 ` [meta-oe/meta-multimedia 0/2] games preparations Paul Eggleton
2013-01-14 13:38 ` Burton, Ross
@ 2013-01-14 14:36 ` Marko Lindqvist
2013-01-14 16:49 ` Paul Eggleton
1 sibling, 1 reply; 12+ messages in thread
From: Marko Lindqvist @ 2013-01-14 14:36 UTC (permalink / raw)
To: openembedded-devel
On 14 January 2013 15:34, Paul Eggleton <paul.eggleton@linux.intel.com> wrote:
> On Wednesday 09 January 2013 02:00:37 Andreas Müller wrote:
>> While preparing / testing some games I would like to see these in common
>> layers
>>
>> Andreas Müller (2):
>> openal-soft: initial add 1.15.1
>> physfs: initial add 2.0.3
>>
>> .../openal/openal-soft_1.15.1.bb | 20
>> ++++++++++++++++++++ meta-oe/recipes-support/physfs/physfs_2.0.3.bb |
>> 11 +++++++++++ 2 files changed, 31 insertions(+), 0 deletions(-)
>> create mode 100644
>> meta-multimedia/recipes-multimedia/openal/openal-soft_1.15.1.bb create mode
>> 100644 meta-oe/recipes-support/physfs/physfs_2.0.3.bb
>
> There is a meta-games FYI, I think this is possibly where these recipes ought
> to have gone.
They actually are there at the moment. But as I have considered them
not games specific, they have been marked as something that lives
there only temporarily until they can be properly introduced to more
general layers. I guess Andreas has been working on that basis. My bad
for not checking from generic layers if they would be accepted.
So, what's the concensus. Should they be removed from meta-games as
they are in general layer, or should they be moved from staging area
of meta-games to official game libraries area?
- ML
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-oe/meta-multimedia 0/2] games preparations
2013-01-14 14:36 ` Marko Lindqvist
@ 2013-01-14 16:49 ` Paul Eggleton
2013-01-14 17:04 ` Marko Lindqvist
2013-01-14 23:18 ` Andreas Müller
0 siblings, 2 replies; 12+ messages in thread
From: Paul Eggleton @ 2013-01-14 16:49 UTC (permalink / raw)
To: Marko Lindqvist; +Cc: openembedded-devel
On Monday 14 January 2013 16:36:05 Marko Lindqvist wrote:
> On 14 January 2013 15:34, Paul Eggleton <paul.eggleton@linux.intel.com
> wrote:
> > There is a meta-games FYI, I think this is possibly where these recipes
> > ought to have gone.
>
> They actually are there at the moment. But as I have considered them
> not games specific, they have been marked as something that lives
> there only temporarily until they can be properly introduced to more
> general layers. I guess Andreas has been working on that basis. My bad
> for not checking from generic layers if they would be accepted.
> So, what's the concensus. Should they be removed from meta-games as
> they are in general layer, or should they be moved from staging area
> of meta-games to official game libraries area?
I would have thought we should consider meta-games to be the canonical place
for gaming-related recipes.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-oe/meta-multimedia 0/2] games preparations
2013-01-14 16:49 ` Paul Eggleton
@ 2013-01-14 17:04 ` Marko Lindqvist
2013-01-14 23:18 ` Andreas Müller
1 sibling, 0 replies; 12+ messages in thread
From: Marko Lindqvist @ 2013-01-14 17:04 UTC (permalink / raw)
To: Paul Eggleton; +Cc: openembedded-devel
On 14 January 2013 18:49, Paul Eggleton <paul.eggleton@linux.intel.com> wrote:
> On Monday 14 January 2013 16:36:05 Marko Lindqvist wrote:
>> On 14 January 2013 15:34, Paul Eggleton <paul.eggleton@linux.intel.com
>> wrote:
>> > There is a meta-games FYI, I think this is possibly where these recipes
>> > ought to have gone.
>>
>> They actually are there at the moment. But as I have considered them
>> not games specific, they have been marked as something that lives
>> there only temporarily until they can be properly introduced to more
>> general layers. I guess Andreas has been working on that basis. My bad
>> for not checking from generic layers if they would be accepted.
>> So, what's the concensus. Should they be removed from meta-games as
>> they are in general layer, or should they be moved from staging area
>> of meta-games to official game libraries area?
>
> I would have thought we should consider meta-games to be the canonical place
> for gaming-related recipes.
Games and libraries that clearly are for games only (allegro at the
moment) belong to meta-games, but components that could be used by
non-game recipes are less clear. Keep them in meta-games until there
actually is some non-game recipe depending on them forcing their move
to general layers, or introduce them to general layers from the
beginning (or as I've done now, quick and dirty addition to meta-games
with TODO to make proper addition to general layer)?
- ML
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-oe/meta-multimedia 0/2] games preparations
2013-01-14 16:49 ` Paul Eggleton
2013-01-14 17:04 ` Marko Lindqvist
@ 2013-01-14 23:18 ` Andreas Müller
1 sibling, 0 replies; 12+ messages in thread
From: Andreas Müller @ 2013-01-14 23:18 UTC (permalink / raw)
To: openembedded-devel
On Mon, Jan 14, 2013 at 5:49 PM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> On Monday 14 January 2013 16:36:05 Marko Lindqvist wrote:
>> On 14 January 2013 15:34, Paul Eggleton <paul.eggleton@linux.intel.com
>> wrote:
>> > There is a meta-games FYI, I think this is possibly where these recipes
>> > ought to have gone.
>>
>> They actually are there at the moment. But as I have considered them
>> not games specific, they have been marked as something that lives
>> there only temporarily until they can be properly introduced to more
>> general layers. I guess Andreas has been working on that basis. My bad
>> for not checking from generic layers if they would be accepted.
>> So, what's the concensus. Should they be removed from meta-games as
>> they are in general layer, or should they be moved from staging area
>> of meta-games to official game libraries area?
>
> I would have thought we should consider meta-games to be the canonical place
> for gaming-related recipes.
>
Then send a patch to kick them out.
Andreas
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-01-14 23:33 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-09 1:00 [meta-oe/meta-multimedia 0/2] games preparations Andreas Müller
2013-01-09 1:00 ` [meta-oe/meta-multimedia 1/2] openal-soft: initial add 1.15.1 Andreas Müller
2013-01-09 1:00 ` [meta-oe/meta-multimedia 2/2] physfs: initial add 2.0.3 Andreas Müller
2013-01-14 13:34 ` [meta-oe/meta-multimedia 0/2] games preparations Paul Eggleton
2013-01-14 13:38 ` Burton, Ross
2013-01-14 13:46 ` Andreas Müller
2013-01-14 13:50 ` Samuel Stirtzel
2013-01-14 14:07 ` Paul Eggleton
2013-01-14 14:36 ` Marko Lindqvist
2013-01-14 16:49 ` Paul Eggleton
2013-01-14 17:04 ` Marko Lindqvist
2013-01-14 23:18 ` Andreas Müller
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.