View | Details | Raw Unified | Return to bug 138123
Collapse All | Expand All

(-)/kirby/shared/ports/transcode/Makefile (-2 / +1 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	transcode
8
PORTNAME=	transcode
9
PORTVERSION=	1.1.3
9
PORTVERSION=	1.1.4
10
PORTREVISION=	1
11
CATEGORIES=	multimedia
10
CATEGORIES=	multimedia
12
MASTER_SITES=	${MASTER_SITE_BERLIOS} \
11
MASTER_SITES=	${MASTER_SITE_BERLIOS} \
13
		http://fromani.exit1.org/
12
		http://fromani.exit1.org/
(-)/kirby/shared/ports/transcode/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (transcode-1.1.3.tar.bz2) = 9e6d73f6fedff320d0f25feaa4f464a1
1
MD5 (transcode-1.1.4.tar.bz2) = 6ba277fde95c26d217a88bbe5e6dd994
2
SHA256 (transcode-1.1.3.tar.bz2) = 2b5a94cd4ac6b3f0a49c916d1fd55a1c64fc5c7c9b13d32ab141fa59825545f7
2
SHA256 (transcode-1.1.4.tar.bz2) = 7f61fec49ccbf6c5ebe86505c779a659711352733252b241287ce7bf15710e3e
3
SIZE (transcode-1.1.3.tar.bz2) = 2116702
3
SIZE (transcode-1.1.4.tar.bz2) = 2116804
(-)/kirby/shared/ports/transcode/files/patch-libtc-tc_functions.c (+33 lines)
Line 0 Link Here
1
--- libtc/tc_functions.c.orig	2008-08-09 17:24:38.000000000 -0400
2
+++ libtc/tc_functions.c	2009-02-01 22:13:42.000000000 -0500
3
@@ -534,6 +534,15 @@
4
         /* char device could be several things, depending on system */
5
         /* *BSD DVD device? v4l? bktr? sunau? */
6
         if(S_ISCHR(fbuf.st_mode)) {
7
+#ifdef __FreeBSD__
8
+            if (strstr(name, "bktr") || strstr(name, "tuner") || strstr(name, "wbi"))
9
+                return TC_PROBE_PATH_BKTR;
10
+            else if (strstr(name, "dsp") || strstr(name, "audio") || strstr(name, "music"))
11
+                return TC_PROBE_PATH_OSS;
12
+            else
13
+                return TC_PROBE_PATH_ABSPATH;
14
+#endif
15
+
16
             switch (major(fbuf.st_rdev)) {
17
 #ifdef OS_BSD
18
 # ifdef __OpenBSD__
19
@@ -544,14 +553,6 @@
20
                 case 49: /* bktr */
21
                     return TC_PROBE_PATH_BKTR;
22
 # endif
23
-# ifdef __FreeBSD__
24
-                case 4: /* acd */
25
-                    return TC_PROBE_PATH_ABSPATH;
26
-                case 229: /* bktr */
27
-                    return TC_PROBE_PATH_BKTR;
28
-                case 0: /* OSS */
29
-                    return TC_PROBE_PATH_OSS;
30
-# endif
31
                 default: /* libdvdread uses "raw" disk devices here */
32
                     return TC_PROBE_PATH_ABSPATH;
33
 #else

Return to bug 138123