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

(-)multimedia/lxdvdrip/Makefile (-5 / +7 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	lxdvdrip
8
PORTNAME=	lxdvdrip
9
PORTVERSION=	1.47
9
PORTVERSION=	1.47
10
PORTREVISION=	2
10
PORTREVISION=	3
11
CATEGORIES=	multimedia
11
CATEGORIES=	multimedia
12
MASTER_SITES=	http://download.berlios.de/lxdvdrip/ \
12
MASTER_SITES=	http://download.berlios.de/lxdvdrip/ \
13
		ftp://quenix2.dyndns.org/FreeBSD/ports/distfiles/
13
		ftp://quenix2.dyndns.org/FreeBSD/ports/distfiles/
Lines 17-28 Link Here
17
COMMENT=	Command Line Tool to make a copy from a Video DVD
17
COMMENT=	Command Line Tool to make a copy from a Video DVD
18
18
19
LIB_DEPENDS=	dvdread.3:${PORTSDIR}/multimedia/libdvdread
19
LIB_DEPENDS=	dvdread.3:${PORTSDIR}/multimedia/libdvdread
20
RUN_DEPENDS=	streamdvd:${PORTSDIR}/multimedia/streamdvd \
20
RUN_DEPENDS=	dvdauthor:${PORTSDIR}/multimedia/dvdauthor \
21
		transcode:${PORTSDIR}/multimedia/transcode \
21
		dvdbackup:${PORTSDIR}/sysutils/dvdbackup \
22
		dvdauthor:${PORTSDIR}/multimedia/dvdauthor \
22
		dvdwizard:${PORTSDIR}/multimedia/dvdwizard \
23
		buffer:${PORTSDIR}/misc/buffer \
23
		growisofs:${PORTSDIR}/sysutils/dvd+rw-tools \
24
		growisofs:${PORTSDIR}/sysutils/dvd+rw-tools \
24
		mpgtx:${PORTSDIR}/multimedia/mpgtx \
25
		mpgtx:${PORTSDIR}/multimedia/mpgtx \
25
		dvdbackup:${PORTSDIR}/sysutils/dvdbackup
26
		transcode:${PORTSDIR}/multimedia/transcode \
27
		streamdvd:${PORTSDIR}/multimedia/streamdvd
26
28
27
SUB_FILES=	pkg-message
29
SUB_FILES=	pkg-message
28
PKGMESSAGE=	${WRKDIR}/pkg-message
30
PKGMESSAGE=	${WRKDIR}/pkg-message
(-)multimedia/lxdvdrip/files/patch-lxdvdrip.c (-6 / +15 lines)
Lines 1-6 Link Here
1
--- lxdvdrip.c.orig	Tue May 31 23:26:37 2005
1
--- lxdvdrip.c.orig	Thu Jul  7 03:23:50 2005
2
+++ lxdvdrip.c	Wed Jul  6 18:34:10 2005
2
+++ lxdvdrip.c	Thu Dec 15 17:31:20 2005
3
@@ -763,6 +763,9 @@
3
@@ -766,6 +766,9 @@
4
   FILE *filehandle = 0;
4
   FILE *filehandle = 0;
5
   int i;
5
   int i;
6
 
6
 
Lines 10-16 Link Here
10
   if (!(filehandle = fopen (dvd_device, "r")))
10
   if (!(filehandle = fopen (dvd_device, "r")))
11
     {
11
     {
12
       switch (lSprache)
12
       switch (lSprache)
13
@@ -782,7 +785,7 @@
13
@@ -785,7 +788,7 @@
14
       return -1;
14
       return -1;
15
     }
15
     }
16
 
16
 
Lines 19-25 Link Here
19
     {
19
     {
20
       fclose (filehandle);
20
       fclose (filehandle);
21
       switch (lSprache)
21
       switch (lSprache)
22
@@ -802,7 +805,7 @@
22
@@ -805,7 +808,7 @@
23
       return -1;
23
       return -1;
24
     }
24
     }
25
 
25
 
Lines 28-34 Link Here
28
     {
28
     {
29
       fclose (filehandle);
29
       fclose (filehandle);
30
       switch (lSprache)
30
       switch (lSprache)
31
@@ -820,7 +823,8 @@
31
@@ -823,7 +826,8 @@
32
       strcpy (title, "unknown");
32
       strcpy (title, "unknown");
33
       return -1;
33
       return -1;
34
     }
34
     }
Lines 38-43 Link Here
38
   fclose (filehandle);
38
   fclose (filehandle);
39
 
39
 
40
   title[32] = '\0';
40
   title[32] = '\0';
41
@@ -5986,7 +5990,7 @@
42
 	      if (strstr (buffer_name, "mbuffer"))
43
 		sprintf (szBufferBefehl, "%s -s 64k -q -i", buffer_name);	// nehme mbuffer
44
 	      else
45
-		sprintf (szBufferBefehl, "%s -s 64k -m 16m -i", buffer_name);	// nehme buffer
46
+		sprintf (szBufferBefehl, "%s -s 64k -m 10m -i", buffer_name);	// nehme buffer
47
 	    }
48
           // Behandlung von Forced Subtitles
49
           printf ("Wert Untertitel: %ld\n", lUntertitel);
41
@@ -7633,7 +7637,7 @@
50
@@ -7633,7 +7637,7 @@
42
 	    strcat (szFilmVerzeichnis, "/");
51
 	    strcat (szFilmVerzeichnis, "/");
43
 	  strcat (szFilmVerzeichnis, szDVDName);
52
 	  strcat (szFilmVerzeichnis, szDVDName);

Return to bug 90416