diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2005-01-18 20:11:18 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2005-01-18 20:11:18 +0000 |
commit | 232591e535b16bd41dd8c8dfc8de116d18c973a5 (patch) | |
tree | d4a348fbcf935cdbee82b5ee7395ccc8568170b5 /media-tv/mythtv/files | |
parent | Removed old vulnerable ebuilds. (diff) | |
download | gentoo-2-232591e535b16bd41dd8c8dfc8de116d18c973a5.tar.gz gentoo-2-232591e535b16bd41dd8c8dfc8de116d18c973a5.tar.bz2 gentoo-2-232591e535b16bd41dd8c8dfc8de116d18c973a5.zip |
rev dump to CVS snapshot for bug fixes and feature updates since upstream won't release and won't suppport current stable
(Portage version: 2.0.51-r13)
Diffstat (limited to 'media-tv/mythtv/files')
-rw-r--r-- | media-tv/mythtv/files/digest-mythtv-0.13-r1 | 1 | ||||
-rw-r--r-- | media-tv/mythtv/files/digest-mythtv-0.14-r1 | 1 | ||||
-rw-r--r-- | media-tv/mythtv/files/digest-mythtv-0.15.1 | 1 | ||||
-rw-r--r-- | media-tv/mythtv/files/digest-mythtv-0.15.1-r1 | 1 | ||||
-rw-r--r-- | media-tv/mythtv/files/digest-mythtv-0.16.20050115 | 1 | ||||
-rw-r--r-- | media-tv/mythtv/files/gcc-3.4-fix.patch | 39 | ||||
-rw-r--r-- | media-tv/mythtv/files/mythtv-0.15-directfb.patch | 19 | ||||
-rw-r--r-- | media-tv/mythtv/files/tvformat.fix.0.13.diff | 13 |
8 files changed, 1 insertions, 75 deletions
diff --git a/media-tv/mythtv/files/digest-mythtv-0.13-r1 b/media-tv/mythtv/files/digest-mythtv-0.13-r1 deleted file mode 100644 index d64835745f92..000000000000 --- a/media-tv/mythtv/files/digest-mythtv-0.13-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 bdca237336453cf68835063c1a4efa91 mythtv-0.13.tar.bz2 3263341 diff --git a/media-tv/mythtv/files/digest-mythtv-0.14-r1 b/media-tv/mythtv/files/digest-mythtv-0.14-r1 deleted file mode 100644 index 0d9553b02a81..000000000000 --- a/media-tv/mythtv/files/digest-mythtv-0.14-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 c2ea3e39580d70aaa22c36a35f6afcca mythtv-0.14.tar.bz2 5802666 diff --git a/media-tv/mythtv/files/digest-mythtv-0.15.1 b/media-tv/mythtv/files/digest-mythtv-0.15.1 deleted file mode 100644 index 55e1ca838ced..000000000000 --- a/media-tv/mythtv/files/digest-mythtv-0.15.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 91aca494281ae966f45f941026b72985 mythtv-0.15.1.tar.bz2 6209329 diff --git a/media-tv/mythtv/files/digest-mythtv-0.15.1-r1 b/media-tv/mythtv/files/digest-mythtv-0.15.1-r1 deleted file mode 100644 index 55e1ca838ced..000000000000 --- a/media-tv/mythtv/files/digest-mythtv-0.15.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 91aca494281ae966f45f941026b72985 mythtv-0.15.1.tar.bz2 6209329 diff --git a/media-tv/mythtv/files/digest-mythtv-0.16.20050115 b/media-tv/mythtv/files/digest-mythtv-0.16.20050115 new file mode 100644 index 000000000000..d939052a9c06 --- /dev/null +++ b/media-tv/mythtv/files/digest-mythtv-0.16.20050115 @@ -0,0 +1 @@ +MD5 a16fa44a42ceb780ccf1bd7cb133fee8 mythtv-0.16.20050115.tar.bz2 14946055 diff --git a/media-tv/mythtv/files/gcc-3.4-fix.patch b/media-tv/mythtv/files/gcc-3.4-fix.patch deleted file mode 100644 index 097177687318..000000000000 --- a/media-tv/mythtv/files/gcc-3.4-fix.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff -ur mythtv-0.15.1.orig/libs/libmythtv/fifowriter.cpp mythtv-0.15.1/libs/libmythtv/fifowriter.cpp ---- mythtv-0.15.1.orig/libs/libmythtv/fifowriter.cpp 2004-06-02 21:06:54.427866608 +0100 -+++ mythtv-0.15.1/libs/libmythtv/fifowriter.cpp 2004-06-02 21:08:37.942130048 +0100 -@@ -21,9 +21,9 @@ - maxblksize = new long[count]; - killwr = new int[count]; - fbcount = new int[count]; -- fifo_buf = new (struct fifo_buf *)[count]; -- fb_inptr = new (struct fifo_buf *)[count]; -- fb_outptr = new (struct fifo_buf *)[count]; -+ fifo_buf = new fifo_ptr[count]; -+ fb_inptr = new fifo_ptr[count]; -+ fb_outptr = new fifo_ptr[count]; - fifothrds = new pthread_t[count]; - fifo_lock = new pthread_mutex_t [count]; - empty_cond = new pthread_cond_t[count]; -diff -ur mythtv-0.15.1.orig/libs/libmythtv/fifowriter.h mythtv-0.15.1/libs/libmythtv/fifowriter.h ---- mythtv-0.15.1.orig/libs/libmythtv/fifowriter.h 2004-06-02 21:06:54.423867216 +0100 -+++ mythtv-0.15.1/libs/libmythtv/fifowriter.h 2004-06-02 21:08:03.708334376 +0100 -@@ -29,6 +29,7 @@ - long blksize; - } **fifo_buf, **fb_inptr, **fb_outptr; - -+ typedef struct fifo_buf* fifo_ptr; - pthread_t *fifothrds; - pthread_mutex_t *fifo_lock; - pthread_cond_t *full_cond, *empty_cond; -diff -ur mythtv-0.15.1.orig/settings.pro mythtv-0.15.1/settings.pro ---- mythtv-0.15.1.orig/settings.pro 2004-06-02 21:06:54.474859464 +0100 -+++ mythtv-0.15.1/settings.pro 2004-06-02 21:07:07.013953232 +0100 -@@ -14,7 +14,7 @@ - - release { - DEFINES += MMX -- QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer -+ QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer -fpermissive - QMAKE_CFLAGS_RELEASE = $${QMAKE_CXXFLAGS_RELEASE} - } - diff --git a/media-tv/mythtv/files/mythtv-0.15-directfb.patch b/media-tv/mythtv/files/mythtv-0.15-directfb.patch deleted file mode 100644 index 7f72c06b111a..000000000000 --- a/media-tv/mythtv/files/mythtv-0.15-directfb.patch +++ /dev/null @@ -1,19 +0,0 @@ -*** mythtv-0.15/libs/libmythtv/videoout_directfb.cpp~ Wed May 26 22:50:27 2004 ---- mythtv-0.15/libs/libmythtv/videoout_directfb.cpp Wed May 26 22:50:27 2004 -*************** -*** 337,343 **** - desc.flags = DSDESC_CAPS; - desc.caps = DSCAPS_PRIMARY; - if(data->cardCapabilities.acceleration_mask & DFXL_BLIT) -! desc.caps = (DFBSurfaceCapabilities)(desc.caps | DSCAPS_DOUBLE); - DFBCHECKFAIL(data->dfb->CreateSurface(data->dfb, &desc, &(data->primarySurface)), false); - DFBCHECKFAIL(data->primarySurface->Clear(data->primarySurface, 0, 0, 0, 0xff), false); - DFBCHECKFAIL(data->primarySurface->Flip(data->primarySurface, 0, DSFLIP_ONSYNC), false); ---- 337,343 ---- - desc.flags = DSDESC_CAPS; - desc.caps = DSCAPS_PRIMARY; - if(data->cardCapabilities.acceleration_mask & DFXL_BLIT) -! desc.caps = (DFBSurfaceCapabilities)(desc.caps | DSCAPS_FLIPPING); - DFBCHECKFAIL(data->dfb->CreateSurface(data->dfb, &desc, &(data->primarySurface)), false); - DFBCHECKFAIL(data->primarySurface->Clear(data->primarySurface, 0, 0, 0, 0xff), false); - DFBCHECKFAIL(data->primarySurface->Flip(data->primarySurface, 0, DSFLIP_ONSYNC), false); diff --git a/media-tv/mythtv/files/tvformat.fix.0.13.diff b/media-tv/mythtv/files/tvformat.fix.0.13.diff deleted file mode 100644 index 4c0f98ad5663..000000000000 --- a/media-tv/mythtv/files/tvformat.fix.0.13.diff +++ /dev/null @@ -1,13 +0,0 @@ -diff -u -d -r1.57 channel.cpp ---- libs/libmythtv/channel.cpp 5 Dec 2003 01:05:35 -0000 1.57 -+++ libs/libmythtv/channel.cpp 14 Dec 2003 03:23:30 -0000 -@@ -342,6 +342,9 @@ - QString freqid = query.value(1).toString(); - QString tvformat = query.value(2).toString(); - -+ if (tvformat.isNull() || tvformat.isEmpty()) -+ tvformat = "Default"; -+ - pthread_mutex_unlock(&db_lock); - - // Tune |