aboutsummaryrefslogtreecommitdiffstats
path: root/nonworking
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-09-10 21:29:44 +0000
committerPhil Blundell <philb@gnu.org>2004-09-10 21:29:44 +0000
commit603c139595d2d584cc73a5d74fe3075f8b9022bd (patch)
tree7f395b2ad0336d747ef262c6067bb9dbd507533c /nonworking
parentfb6a0f1d2356ace7e2166ad9a287aae0b826524d (diff)
downloadopenembedded-603c139595d2d584cc73a5d74fe3075f8b9022bd.tar.gz
Merge bk://openembedded@openembedded.bkbits.net/packages
into stealth.(none):/home/pb/oe/oe-packages 2004/09/10 22:29:28+01:00 (none)!pb move mythtv out of nonworking and update to version 0.16 BKrev: 41421cc89Ai5xV2vHfIjcb_8yovo7A
Diffstat (limited to 'nonworking')
-rw-r--r--nonworking/mythtv/mythtv/settings.patch0
-rw-r--r--nonworking/mythtv/mythtv_0.15.1.oe64
2 files changed, 0 insertions, 64 deletions
diff --git a/nonworking/mythtv/mythtv/settings.patch b/nonworking/mythtv/mythtv/settings.patch
deleted file mode 100644
index e69de29bb2..0000000000
--- a/nonworking/mythtv/mythtv/settings.patch
+++ /dev/null
diff --git a/nonworking/mythtv/mythtv_0.15.1.oe b/nonworking/mythtv/mythtv_0.15.1.oe
deleted file mode 100644
index a77ee3d757..0000000000
--- a/nonworking/mythtv/mythtv_0.15.1.oe
+++ /dev/null
@@ -1,64 +0,0 @@
-DESCRIPTION = "A full featured personal video recorder system."
-MAINTAINER = "Michael 'Mickey' Lauer"
-SECTION = "multimedia"
-PR = "r1"
-
-SRC_URI = "http://www.mythtv.org/mc/mythtv-0.15.1.tar.bz2 \
- file://settings.patch;patch=1"
-
-inherit qmake
-
-QMAKE_PROFILES = "mythtv.pro"
-
-def mythtv_arch(d):
- import oe, re
- arch = oe.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)}"
-
-EXTRA_QMAKEVARS_POST += "QMAKE_LIBS_QT=-lqt QMAKE_LIBS_QT_THREAD=-lqt-mt"
-
-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 \
- --disable-a52 \
- --disable-a52bin \
- --enable-pp \
- --enable-shared-pp \
- --enable-shared \
- --disable-amr_nb \
- --disable-amr_nb-fixed \
- --disable-sunmlib \
- \
- --cpu=${MYTHTV_ARCH} \
- --disable-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
-}
-