diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2006-02-19 08:55:51 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2006-02-19 08:55:51 +0000 |
commit | a0c03cf4327c5de6746b6740920772130c913164 (patch) | |
tree | 5e9cf151171d8d8cce3961151cf0cb6431250a65 /multimedia/tovid | |
parent | 906ac7fec5ecd0422de527b5e427cdae97e1146f (diff) | |
download | ports-a0c03cf4327c5de6746b6740920772130c913164.tar.gz ports-a0c03cf4327c5de6746b6740920772130c913164.zip |
Notes
Diffstat (limited to 'multimedia/tovid')
-rw-r--r-- | multimedia/tovid/Makefile | 2 | ||||
-rw-r--r-- | multimedia/tovid/files/patch-src__makexml.sh | 65 |
2 files changed, 66 insertions, 1 deletions
diff --git a/multimedia/tovid/Makefile b/multimedia/tovid/Makefile index f0b28f81ea0f..79a86a0c006b 100644 --- a/multimedia/tovid/Makefile +++ b/multimedia/tovid/Makefile @@ -7,7 +7,7 @@ PORTNAME= tovid PORTVERSION= 0.24 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia python MASTER_SITES= http://download.berlios.de/tovid/ diff --git a/multimedia/tovid/files/patch-src__makexml.sh b/multimedia/tovid/files/patch-src__makexml.sh new file mode 100644 index 000000000000..bb968b4dd94f --- /dev/null +++ b/multimedia/tovid/files/patch-src__makexml.sh @@ -0,0 +1,65 @@ +--- src/makexml.sh.orig Sun Feb 19 05:52:41 2006 ++++ src/makexml.sh Sun Feb 19 05:52:41 2006 +@@ -183,7 +183,7 @@ + # Generate XML for the button linking to this titleset menu from the top menu + TOP_MENU_BUTTONS=`cat << EOF + $TOP_MENU_BUTTONS\ +- <button>jump titleset $CUR_TS menu;<\/button>\n ++ <button>jump titleset $CUR_TS menu;<\/button> + EOF` + + # Generate XML for the menu header, with a placeholder for +@@ -206,7 +206,7 @@ + # Generate XML for the button linking to this menu from the top menu + TOP_MENU_BUTTONS=`cat << EOF + $TOP_MENU_BUTTONS\ +- <select ref="select-menu-$CUR_TS"\/>\n ++ <select ref="select-menu-$CUR_TS"\/> + EOF` + + # Generate XML for the segment item +@@ -271,7 +271,7 @@ + if [ $CUR_VIDEO -lt 2 ]; then + MENU_BUTTONS=`cat << EOF + $MENU_BUTTONS\ +- <button>jump title $CUR_TITLE;<\/button>\n ++ <button>jump title $CUR_TITLE;<\/button> + EOF` + fi + else +@@ -279,7 +279,7 @@ + if [ $CUR_VIDEO -le 1 ]; then + TOP_MENU_BUTTONS=`cat << EOF + $TOP_MENU_BUTTONS\ +- <button>jump titleset $CUR_TS menu;<\/button>\n ++ <button>jump titleset $CUR_TS menu;<\/button> + EOF` + fi + fi +@@ -377,7 +377,7 @@ + if $FIRST_TITLE; then + MENU_BUTTONS=`cat << EOF + $MENU_BUTTONS +- <select ref="play-title-$CUR_TITLE"\/>\n ++ <select ref="play-title-$CUR_TITLE"\/> + EOF` + fi + +@@ -413,7 +413,7 @@ + # jump to this playlist (title) + MENU_BUTTONS=`cat << EOF + $MENU_BUTTONS\ +- <select ref="play-title-$CUR_TITLE"\/>\n ++ <select ref="play-title-$CUR_TITLE"\/> + EOF` + + # Generate XML for the sequence item +@@ -457,7 +457,7 @@ + if $HAVE_TOP_MENU; then + MENU_BUTTONS=`cat << EOF + $MENU_BUTTONS\ +- <button>jump vmgm menu;<\/button>\n ++ <button>jump vmgm menu;<\/button> + EOF` + fi + |