diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/mythtv/mythtv_0.16+cvs20040918.bb | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/mythtv/mythtv_0.16+cvs20040918.bb')
-rw-r--r-- | packages/mythtv/mythtv_0.16+cvs20040918.bb | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/packages/mythtv/mythtv_0.16+cvs20040918.bb b/packages/mythtv/mythtv_0.16+cvs20040918.bb index e69de29bb2..2fe9395bab 100644 --- a/packages/mythtv/mythtv_0.16+cvs20040918.bb +++ b/packages/mythtv/mythtv_0.16+cvs20040918.bb @@ -0,0 +1,79 @@ +DESCRIPTION = "A full featured personal video recorder system." +MAINTAINER = "Michael 'Mickey' Lauer" +SECTION = "x11/multimedia" +PR = "r4" + +SRC_URI = "cvs://mythtv:mythtv@cvs.mythtv.org/var/lib/mythcvs;module=mythtv;date=20040918;method=pserver \ + file://xvmc-via.patch;patch=1;pnum=0 \ + file://settings.pro \ + file://prefix-etc.patch;patch=1" +S = "${WORKDIR}/mythtv" + +DEPENDS = "xinerama qt-x11-free lame libxv libxxf86vm libxvmc lirc" +RDEPENDS = "qt-x11-plugins" + +inherit qmake qt3x11 + +QMAKE_PROFILES = "mythtv.pro" + +# +# Disable everything non-x86 for now, since there are some -march=i586 hardcoded in there. +# +COMPATIBLE_HOST = 'i.86.*-linux' + +def mythtv_arch(d): + import bb, re + arch = bb.data.getVar('TARGET_ARCH', d, 1) + if re.match("^i.86$", arch): + arch = "x86" + elif arch == "x86_64": + arch = "x86" + elif arch == "arm": + arch = "armv4l" + return arch + +MYTHTV_ARCH := "${@mythtv_arch(d)}" + +do_configure_prepend() { +# it's not autotools anyway, so we call ./configure directly + find . -name "Makefile"|xargs rm -f + ./configure --prefix=/usr \ + --mandir=/usr/man \ + --disable-mp3lame \ + --enable-vorbis \ + --disable-faad \ + --disable-faadbin \ + --disable-faac \ + --disable-mingw32 \ + --enable-a52 \ + --disable-a52bin \ + --enable-pp \ + --enable-shared-pp \ + --enable-shared \ + --disable-amr_nb \ + --disable-amr_nb-fixed \ + --disable-sunmlib \ + \ + --cpu=${MYTHTV_ARCH} \ + --enable-mmx \ + --disable-altivec \ + --enable-v4l \ + --enable-audio-oss \ + --disable-audio-beos \ + --enable-dv1394 \ + --enable-network \ + --enable-zlib \ + --enable-simple_idct \ + --disable-vhook \ + --disable-mpegaudio-hp \ + --enable-ffserver \ + --enable-ffplay \ + --enable-risky + + install -m 0644 ${WORKDIR}/settings.pro ${S}/ +} + +do_install() { + oe_runmake INSTALL_ROOT=${D} install +} + |