public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-burn/files: vdr-burn-0.2.2_makefile.diff vdr-burn-0.2.2_setdefaults.diff vdr-burn-0.2.2_gentoo-path.diff vdr-burn-0.2.2-missing-include-for-function-setpriority.patch
@ 2013-03-31 10:54 Joerg Bornkessel (hd_brummy)
  0 siblings, 0 replies; only message in thread
From: Joerg Bornkessel (hd_brummy) @ 2013-03-31 10:54 UTC (permalink / raw
  To: gentoo-commits

hd_brummy    13/03/31 10:54:45

  Added:                vdr-burn-0.2.2_makefile.diff
                        vdr-burn-0.2.2_setdefaults.diff
                        vdr-burn-0.2.2_gentoo-path.diff
                        vdr-burn-0.2.2-missing-include-for-function-setpriority.patch
  Log:
  bump
  
  (Portage version: 2.1.11.50/cvs/Linux i686, unsigned Manifest commit)

Revision  Changes    Path
1.1                  media-plugins/vdr-burn/files/vdr-burn-0.2.2_makefile.diff

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-burn/files/vdr-burn-0.2.2_makefile.diff?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-burn/files/vdr-burn-0.2.2_makefile.diff?rev=1.1&content-type=text/plain

Index: vdr-burn-0.2.2_makefile.diff
===================================================================
Signed-of-by: Joerg Bornkessel <hd_brummy@gentoo.org> (12 Feb 2012)

diff -Naur burn-0.2.0.orig/Makefile burn-0.2.0/Makefile
--- burn-0.2.0.orig/Makefile	2012-02-12 20:21:08.000000000 +0100
+++ burn-0.2.0/Makefile	2012-02-12 20:24:33.000000000 +0100
@@ -9,6 +9,9 @@
 #
 PLUGIN = burn
 
+# Enable DMH Archive
+#ENABLE_DMH_ARCHIVE = 1
+
 ### The version number of this plugin (taken from the main source file):
 
 VERSION = $(shell grep 'const char\* plugin::VERSION *=' $(PLUGIN).c | awk '{ print $$5 }' | sed -e 's/[";]//g')



1.1                  media-plugins/vdr-burn/files/vdr-burn-0.2.2_setdefaults.diff

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-burn/files/vdr-burn-0.2.2_setdefaults.diff?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-burn/files/vdr-burn-0.2.2_setdefaults.diff?rev=1.1&content-type=text/plain

Index: vdr-burn-0.2.2_setdefaults.diff
===================================================================
set default settings
unset gentoo unsupportede packages (m2vrequantizer)
disable unneeded menuentrys

Signed-of-by: Joerg Bornkessel <hd_brummy@gentoo.org> (12 Feb 2012)
diff -Naur burn-0.2.0.orig/setup.c burn-0.2.0/setup.c
--- burn-0.2.0.orig/setup.c	2012-02-12 20:14:01.000000000 +0100
+++ burn-0.2.0/setup.c	2012-02-12 20:18:10.000000000 +0100
@@ -88,10 +88,10 @@
 	//!--- plugin_setup -----------------------------------------------------------
 
 	plugin_setup::plugin_setup():
-			PROCTOOLS_INIT_PROPERTY( RemovePath,          false ),
+			PROCTOOLS_INIT_PROPERTY( RemovePath,          true ),
 			PROCTOOLS_INIT_PROPERTY( CustomDiskSize,      200 ),
 			PROCTOOLS_INIT_PROPERTY( BurnSpeed,           0 ),
-			PROCTOOLS_INIT_PROPERTY( RequantType,         requanttype_metakine ),
+			PROCTOOLS_INIT_PROPERTY( RequantType,         requanttype_transcode ),
 			PROCTOOLS_INIT_PROPERTY( PreserveLogFiles,    false ),
 			PROCTOOLS_INIT_PROPERTY( DefaultLanguage,     0 ),
 			PROCTOOLS_INIT_PROPERTY( MainMenuStatus,      true ),
@@ -226,8 +226,8 @@
 		m_defaults = job_defaults();
 
 		Add( new menu::text_item( tr("--- Common settings --------------------------------------------------") ) );
-		Add( new menu::bool_edit_item( tr("Remove path component"), m_setup.RemovePath ) );
-		Add( new menu::list_edit_item( tr("Requant using"), m_setup.RequantType, requanttype_strings ) );
+//		Add( new menu::bool_edit_item( tr("Remove path component"), m_setup.RemovePath ) );
+//		Add( new menu::list_edit_item( tr("Requant using"), m_setup.RequantType, requanttype_strings ) );
 		Add( new menu::number_edit_item( tr("Burn speed"), m_setup.BurnSpeed, 0, 32, tr("unlimited") ) );
 		Add( new menu::bool_edit_item( tr("Preserve logfiles"), m_setup.PreserveLogFiles ) );
 		Add( new menu::list_edit_item( tr("Spare language code"), m_setup.DefaultLanguage, track_info::get_language_codes(), false ) );



1.1                  media-plugins/vdr-burn/files/vdr-burn-0.2.2_gentoo-path.diff

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-burn/files/vdr-burn-0.2.2_gentoo-path.diff?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-burn/files/vdr-burn-0.2.2_gentoo-path.diff?rev=1.1&content-type=text/plain

Index: vdr-burn-0.2.2_gentoo-path.diff
===================================================================
some path adaption to gentoo vdr

Signed-of-by: Joerg Bornkessel <hd_brummy@gentoo.org> (15 Feb 2011)
diff -Naur burn-0.2.0.orig/burn.c burn-0.2.0/burn.c
--- burn-0.2.0.orig/burn.c	2012-02-12 19:46:51.000000000 +0100
+++ burn-0.2.0/burn.c	2012-02-12 19:49:21.000000000 +0100
@@ -96,11 +96,11 @@
 
 	bool plugin::Start()
 	{
-		m_configPath = ConfigDirectory(PLUGIN_NAME);
+		m_configPath = "/usr/share/vdr/burn";
 
 		manager::start();
 		logger_vdr::start();
-		gdwrapper::setup::set_font_path( m_configPath + "/fonts" );
+		gdwrapper::setup::set_font_path( "/usr/share/fonts/ttf-bitstream-vera" );
 		if ( !skin_list::get().load( get_config_path() ) )
 			return false;
 
diff -Naur burn-0.2.0.orig/vdrburn-dvd.sh burn-0.2.0/vdrburn-dvd.sh
--- burn-0.2.0.orig/vdrburn-dvd.sh	2012-02-12 19:46:51.000000000 +0100
+++ burn-0.2.0/vdrburn-dvd.sh	2012-02-12 19:52:22.000000000 +0100
@@ -92,9 +92,8 @@
 			CUT="-cut $MPEG_DATA_PATH/px.cut"
 		fi
 
-		$IO_NICE $JAVA_EXE -Djava.awt.headless=true \
-				-jar $PROJECTX_JAR \
-				-ini $CONFIG_PATH/ProjectX.ini \
+				/usr/bin/projectx_nogui \
+				-ini /usr/share/vdr/burn/projectx-vdr.ini \
 				$TTXT_OPTS \
 				$CUT -id $USED_TRACKS \
 				-demux -out "$MPEG_DATA_PATH" -name vdrsync \
diff -Naur burn-0.2.0.orig/vdrburn-dvd.sh burn-0.2.0/vdrburn-dvd.sh
--- burn-0.2.0.orig/vdrburn-dvd.sh	2012-02-15 21:58:34.000000000 +0100
+++ burn-0.2.0/vdrburn-dvd.sh	2012-02-15 22:00:47.000000000 +0100
@@ -78,7 +78,7 @@
 	;;
 
 	demux)
-		[ -r $CONFIG_PATH/vdrburn-dvd.conf ] && . $CONFIG_PATH/vdrburn-dvd.conf
+		PROJECTX_JAR="/usr/share/projectx/lib/projectx.jar"
 		[ -z "$JAVA_EXE" ] && JAVA_EXE=$(which java)
 
 		[ ! -x "$JAVA_EXE" ] && echo "ERROR: java executable \"$JAVA_EXE\" not found" && exit 1



1.1                  media-plugins/vdr-burn/files/vdr-burn-0.2.2-missing-include-for-function-setpriority.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-burn/files/vdr-burn-0.2.2-missing-include-for-function-setpriority.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-burn/files/vdr-burn-0.2.2-missing-include-for-function-setpriority.patch?rev=1.1&content-type=text/plain

Index: vdr-burn-0.2.2-missing-include-for-function-setpriority.patch
===================================================================
http://bugs.gentoo.org/425596

--- proctools/process.cc
+++ proctools/process.cc
@@ -8,6 +8,8 @@
 #include <cerrno>
 #include <sys/types.h>
 #include <sys/wait.h>
+#include <sys/time.h>
+#include <sys/resource.h>
 #include <unistd.h>
 
 namespace proctools





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-03-31 10:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-31 10:54 [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-burn/files: vdr-burn-0.2.2_makefile.diff vdr-burn-0.2.2_setdefaults.diff vdr-burn-0.2.2_gentoo-path.diff vdr-burn-0.2.2-missing-include-for-function-setpriority.patch Joerg Bornkessel (hd_brummy)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox