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

(-)Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	kaffeine
4
PORTNAME=	kaffeine
5
PORTVERSION=	1.3.1
5
PORTVERSION=	1.3.1
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	multimedia kde
7
CATEGORIES=	multimedia kde
8
MASTER_SITES=	SF/kaffeine/current
8
MASTER_SITES=	SF/kaffeine/current
9
9
(-)files/patch-dmx.h (-1 / +2 lines)
Lines 1-6 Link Here
1
--- include/dmx.h.orig	2015-08-07 15:43:59 UTC
1
--- include/dmx.h.orig	2015-08-07 15:43:59 UTC
2
+++ include/dmx.h
2
+++ include/dmx.h
3
@@ -24,7 +24,15 @@
3
@@ -24,7 +24,16 @@
4
 #ifndef _DVBDMX_H_
4
 #ifndef _DVBDMX_H_
5
 #define _DVBDMX_H_
5
 #define _DVBDMX_H_
6
 
6
 
Lines 12-17 Link Here
12
+typedef uint32_t __u32;
12
+typedef uint32_t __u32;
13
+typedef uint16_t __u16;
13
+typedef uint16_t __u16;
14
+typedef uint8_t __u8;
14
+typedef uint8_t __u8;
15
+typedef int64_t __s64;
15
+#endif
16
+#endif
16
+
17
+
17
 #include <time.h>
18
 #include <time.h>
(-)files/patch-dvbdevice_linux.cpp (+23 lines)
Line 0 Link Here
1
--- src/dvb/dvbdevice_linux.cpp.orig	2016-05-03 12:36:58.011789000 +0200
2
+++ src/dvb/dvbdevice_linux.cpp	2016-05-03 12:41:02.658341000 +0200
3
@@ -35,7 +35,9 @@
4
 #include <sys/ioctl.h>
5
 #include <sys/stat.h>
6
 #include <dirent.h>
7
+#ifndef __FreeBSD__
8
 #include <sys/inotify.h>
9
+#endif
10
 #include <vector>
11
 #include <stdlib.h>
12
 #include <unistd.h>
13
@@ -854,8 +856,10 @@
14
 
15
                 runstate = 1;
16
 
17
+#ifndef __FreeBSD__
18
                 ifd = inotify_init();
19
                 inotify_add_watch(ifd, "/dev/dvb", IN_CREATE|IN_DELETE);
20
+#endif
21
                 fcntl(ifd, F_SETFL, O_NONBLOCK);
22
                 pfd.fd = ifd;
23
                 pfd.events = POLLIN;
(-)files/patch-frontend.h (-1 / +2 lines)
Lines 1-6 Link Here
1
--- include/frontend.h.orig	2015-08-07 15:43:59 UTC
1
--- include/frontend.h.orig	2015-08-07 15:43:59 UTC
2
+++ include/frontend.h
2
+++ include/frontend.h
3
@@ -26,7 +26,14 @@
3
@@ -26,7 +26,15 @@
4
 #ifndef _DVBFRONTEND_H_
4
 #ifndef _DVBFRONTEND_H_
5
 #define _DVBFRONTEND_H_
5
 #define _DVBFRONTEND_H_
6
 
6
 
Lines 12-17 Link Here
12
+typedef uint32_t __u32;
12
+typedef uint32_t __u32;
13
+typedef uint16_t __u16;
13
+typedef uint16_t __u16;
14
+typedef uint8_t __u8;
14
+typedef uint8_t __u8;
15
+typedef int64_t __s64;
15
+#endif
16
+#endif
16
 
17
 
17
 typedef enum fe_type {
18
 typedef enum fe_type {

Return to bug 208097