summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Goldstein <cardoe@gentoo.org>2006-06-27 02:54:55 +0000
committerDoug Goldstein <cardoe@gentoo.org>2006-06-27 02:54:55 +0000
commitd303a2a48718c4c62056df27f74ecead221caa0d (patch)
tree87237d2e70fa43b8d0e6d9e3abee0550c078e841 /media-tv/ivtv/files
parentRev bump (diff)
downloadgentoo-2-d303a2a48718c4c62056df27f74ecead221caa0d.tar.gz
gentoo-2-d303a2a48718c4c62056df27f74ecead221caa0d.tar.bz2
gentoo-2-d303a2a48718c4c62056df27f74ecead221caa0d.zip
Rev bump
(Portage version: 2.1.1_pre1-r1) (Signed Manifest commit)
Diffstat (limited to 'media-tv/ivtv/files')
-rw-r--r--media-tv/ivtv/files/digest-ivtv-0.6.29
-rw-r--r--media-tv/ivtv/files/ivtv-0.6.2-ppc-fix.patch47
2 files changed, 0 insertions, 56 deletions
diff --git a/media-tv/ivtv/files/digest-ivtv-0.6.2 b/media-tv/ivtv/files/digest-ivtv-0.6.2
deleted file mode 100644
index 3cc3524e537b..000000000000
--- a/media-tv/ivtv/files/digest-ivtv-0.6.2
+++ /dev/null
@@ -1,9 +0,0 @@
-MD5 93ce8acbb3008956486ee30ff21f7e14 ivtv-0.6.2.tar.gz 432308
-RMD160 69d64a40bd861902aab982c2e047372ebbcf217c ivtv-0.6.2.tar.gz 432308
-SHA256 3cdae3e8f7d2e67e2c8be3474130e4d6fea2f7576ac62823d7e47eb7475c6756 ivtv-0.6.2.tar.gz 432308
-MD5 f48ad2cda962879bc093cc6867dc86d2 pvr_1.18.21.22254_inf.zip 593441
-RMD160 9549dddfddacf6bee3c73def508a2c347c5e25f2 pvr_1.18.21.22254_inf.zip 593441
-SHA256 156c0cfaa2cb3f482b48f95b94a9247690e4ed2d0cb8962a52db8846c683bff1 pvr_1.18.21.22254_inf.zip 593441
-MD5 dc84a41b3b296b856da3d0f9edbb7a08 pvr_2.0.24.23035.zip 281620
-RMD160 fbd439efa5793e9a65fd6fac2093c523cd458027 pvr_2.0.24.23035.zip 281620
-SHA256 2387e7a042342f7b401222aac7f99a19b733fded8118339edd402a58279e5f95 pvr_2.0.24.23035.zip 281620
diff --git a/media-tv/ivtv/files/ivtv-0.6.2-ppc-fix.patch b/media-tv/ivtv/files/ivtv-0.6.2-ppc-fix.patch
deleted file mode 100644
index c3ce8d249c71..000000000000
--- a/media-tv/ivtv/files/ivtv-0.6.2-ppc-fix.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-Index: /ivtv/branches/0.6/utils/Makefile
-===================================================================
---- utils/Makefile (revision 3212)
-+++ utils/Makefile (revision 3284)
-@@ -3,7 +3,10 @@
- HDRDIR = /usr/include/linux
-
--EXES := ivtvctl ivtvfbctl ivtvplay ivtv-detect ivtv-radio \
-- ivtv-mpegindex ivtv-encoder
-+EXES := ivtvctl ivtv-detect ivtv-radio
-+EXES := $(shell if echo - | $(CC) -E -dM - | grep __powerpc__ > /dev/null; \
-+ then echo $(EXES); else \
-+ echo $(EXES) ivtvfbctl ivtvplay ivtv-mpegindex ivtv-encoder; fi)
- BIN := $(EXES) ivtv-tune/ivtv-tune cx25840ctl/cx25840ctl
-+
-
- HEADERS := ../driver/ivtv.h
-Index: /ivtv/branches/0.6/driver/ivtv-driver.h
-===================================================================
---- driver/ivtv-driver.h (revision 3263)
-+++ driver/ivtv-driver.h (revision 3284)
-@@ -186,6 +186,9 @@
- /* ========================== START USER SETTABLE DMA VARIABLES =========== */
- /* ======================================================================== */
--
-+#ifdef __powerpc__
-+#define DYNAMIC_MEMORY_ALLOC 0 /* PowerPC doesn't work with DMA currently */
-+#else
- #define DYNAMIC_MEMORY_ALLOC 1 /* Allocate memory each stream use */
-+#endif
-
- /* DMA Buffers Sizes */
-@@ -211,7 +214,14 @@
-
- /* Decoder DMA or PIO, 1=PIO, 0=DMA */
-+/* PowerPC does not work with DMA currently */
-+#ifdef __powerpc__
-+#define IVTV_VBI_PIO 1
-+#define IVTV_ENC_PIO 1
-+#define IVTV_DEC_PIO 1
-+#else
- #define IVTV_VBI_PIO 0
- #define IVTV_ENC_PIO 0
- #define IVTV_DEC_PIO 0
-+#endif
- /* This sometimes times out, seems to kill
- encoding sometimes */