1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

o Fix typo in postproc(1) man page

o Add a few parameters to growisofs(1m) command line:
  '-dvd-video -use-the-force-luke=dao'
o Bump PORTREVISION
This commit is contained in:
Mario Sergio Fujikawa Ferreira 2006-01-20 02:44:57 +00:00
parent 9e3df5a2f4
commit 14e287c6ab
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=153950
4 changed files with 39 additions and 1 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= tovid
PORTVERSION= 0.24
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= multimedia python
MASTER_SITES= http://download.berlios.de/tovid/

View File

@ -0,0 +1,11 @@
--- man/postproc.1.orig Fri Jan 20 00:33:04 2006
+++ man/postproc.1 Fri Jan 20 00:33:14 2006
@@ -6,7 +6,7 @@
.SS Synopsis
.nf
- makeslides [ OPTIONS ] IN_FILE OUT_FILE
+ postproc [ OPTIONS ] IN_FILE OUT_FILE
.fi

View File

@ -0,0 +1,16 @@
--- src/dvrequant.sh.orig Fri Jan 20 00:23:01 2006
+++ src/dvrequant.sh Fri Jan 20 00:26:34 2006
@@ -446,11 +446,11 @@
echo "You may consult the log file:$PROCESS_LOG"
echo " "
echo "BURNING:"
-echo "Use to burn image: growisofs -dvd-compat -Z $DVD_DEVICE=$DISK_TITLE.iso "
+echo "Use to burn image: growisofs -dvd-compat -dvd-video -use-the-force-luke=dao -Z $DVD_DEVICE=$DISK_TITLE.iso "
echo "Insert blank dvd and press ENTER"
read BURN
cd $WORKING_DIR/$DISK_TITLE
-growisofs -dvd-compat -Z $DVD_DEVICE=$DISK_TITLE.iso
+growisofs -dvd-compat -dvd-video -use-the-force-luke=dao -Z $DVD_DEVICE=$DISK_TITLE.iso
exit

View File

@ -0,0 +1,11 @@
--- src/makedvd.sh.orig Fri Jan 20 00:23:04 2006
+++ src/makedvd.sh Fri Jan 20 00:27:46 2006
@@ -236,7 +236,7 @@
# Burn the disc, if requested
if $DO_BURN; then
- BURN_CMD="growisofs -dvd-compat -speed=$BURN_SPEED -Z $DVDRW_DEVICE=$DISC_LABEL.iso"
+ BURN_CMD="growisofs -dvd-compat -dvd-video -use-the-force-luke=dao -speed=$BURN_SPEED -Z $DVDRW_DEVICE=$DISC_LABEL.iso"
echo $SEPARATOR
echo "Burning ISO to DVD with the following command:"
echo $BURN_CMD