Initial import of dvdbackup-0.1.1, a DVD backup utility.
This commit is contained in:
parent
b255d103ea
commit
1ab3c08506
5 changed files with 46 additions and 0 deletions
3
graphics/dvdbackup/DESCR
Normal file
3
graphics/dvdbackup/DESCR
Normal file
|
@ -0,0 +1,3 @@
|
|||
DVDBACKUP enables users to create backups from DVDs they own.
|
||||
It requires the libdvdread library and is hence capable of reading encrypted
|
||||
DVDs on systems that have the libdvdcss library installed.
|
23
graphics/dvdbackup/Makefile
Normal file
23
graphics/dvdbackup/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2003/02/02 14:49:31 wulf Exp $
|
||||
|
||||
DISTNAME= dvdbackup-0.1.1
|
||||
WRKSRC= ${WRKDIR}/dvdbackup/src
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://dvd-create.sourceforge.net/
|
||||
|
||||
MAINTAINER= wulf@netbsd.org
|
||||
HOMEPAGE= http://dvd-create.sourceforge.net/
|
||||
COMMENT= DVD backup utility
|
||||
|
||||
USE_BUILDLINK2= yes
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC}; \
|
||||
${CC} -o dvdbackup dvdbackup.c ${CFLAGS} ${LDFLAGS} -ldvdread
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC}; \
|
||||
${INSTALL_PROGRAM} dvdbackup ${LOCALBASE}/bin;
|
||||
|
||||
.include "../../misc/libdvdread/buildlink2.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
2
graphics/dvdbackup/PLIST
Normal file
2
graphics/dvdbackup/PLIST
Normal file
|
@ -0,0 +1,2 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2003/02/02 14:49:31 wulf Exp $
|
||||
bin/dvdbackup
|
5
graphics/dvdbackup/distinfo
Normal file
5
graphics/dvdbackup/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2003/02/02 14:49:31 wulf Exp $
|
||||
|
||||
SHA1 (dvdbackup-0.1.1.tar.gz) = 11bbbd0182f80bff1974b86bb989e9a2ab89f717
|
||||
Size (dvdbackup-0.1.1.tar.gz) = 24806 bytes
|
||||
SHA1 (patch-aa) = a01d7325c4bd142aa213fe4a52e54a1b3903c838
|
13
graphics/dvdbackup/patches/patch-aa
Normal file
13
graphics/dvdbackup/patches/patch-aa
Normal file
|
@ -0,0 +1,13 @@
|
|||
$NetBSD: patch-aa,v 1.1.1.1 2003/02/02 14:49:31 wulf Exp $
|
||||
|
||||
--- dvdbackup.c.orig Mon Feb 3 09:56:44 2003
|
||||
+++ dvdbackup.c Mon Feb 3 09:57:09 2003
|
||||
@@ -782,7 +782,7 @@
|
||||
to consider the second one a feature title we are doing two checks (biggest + biggest - second) /second == 1
|
||||
and biggest%second * 3 < biggest */
|
||||
|
||||
- if ( CheckSizeArray(size_size_array, 0, 1) == 1 ) {
|
||||
+ if ( title_sets > 1 && CheckSizeArray(size_size_array, 0, 1) == 1 ) {
|
||||
/* We have a dual DVD with two feature films - now lets see if they have the same amount of chapters*/
|
||||
|
||||
chapters_1 = 0;
|
Loading…
Reference in a new issue