debian/0000755000000000000000000000000011601450127007163 5ustar debian/control0000644000000000000000000000146611601450127010575 0ustar Source: bashburn Section: utils Priority: extra Maintainer: Andreas Noteng Build-Depends: debhelper (>= 7.0.50~) Standards-Version: 3.9.2 Homepage: http://bashburn.dose.se/index.php Vcs-Git: git://git.debian.org/collab-maint/bashburn.git Vcs-Browser: http://git.debian.org/?p=collab-maint/bashburn.git;a=summary Package: bashburn Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, bash (>= 3.0), cdrdao, wodim, dvd+rw-tools, cdparanoia, vorbis-tools, flac, eject, normalize-audio, mpg123, sudo, genisoimage Description: simplify cd/dvd burning at the command line Bashburn is a tool written in Bash to simplify dvd/cd burning and ripping at the command line, BashBurn can also manipulate ISO images. BashBurn handles burning of multiple image formats, including ISO, bin/cue and nrg. debian/manpages0000644000000000000000000000003011601434156010676 0ustar bashburn_man/bashburn.1 debian/changelog0000644000000000000000000000023111601450127011031 0ustar bashburn (3.0.1-1) unstable; urgency=low * Initial release (Closes: #497092) -- Andreas Noteng Sat, 25 Jun 2011 18:10:39 +0200 debian/install0000644000000000000000000000045211601434156010561 0ustar burning/* usr/share/bashburn/lib/burning config/* usr/share/bashburn/lib/config convert/* usr/share/bashburn/lib/convert func/* usr/share/bashburn/lib/func lang/* usr/share/bashburn/lib/lang menus/* usr/share/bashburn/lib/menus misc/* usr/share/bashburn/lib/misc BashBurn.sh usr/share/bashburn debian/source/0000755000000000000000000000000011601434156010467 5ustar debian/source/format0000644000000000000000000000001411601434156011675 0ustar 3.0 (quilt) debian/dirs0000644000000000000000000000036711601434156010061 0ustar usr/share/bashburn usr/share/bashburn/lib usr/share/bashburn/lib/burning usr/share/bashburn/lib/config usr/share/bashburn/lib/convert usr/share/bashburn/lib/func usr/share/bashburn/lib/lang usr/share/bashburn/lib/menus usr/share/bashburn/lib/misc debian/watch0000644000000000000000000000010511601450127010210 0ustar version=3 http://svn.inf.sgsp.edu.pl/svn/bashburn/releases/ (\d+.*)/ debian/patches/0000755000000000000000000000000011601450127010612 5ustar debian/patches/hardcode_BBROOTDIR.patch0000644000000000000000000000111711601450127015012 0ustar Hardcode the path to BashBurn rootdir Index: bashburn/BashBurn.sh =================================================================== --- bashburn.orig/BashBurn.sh 2011-03-13 14:38:57.574653545 +0100 +++ bashburn/BashBurn.sh 2011-03-13 14:39:35.330653545 +0100 @@ -324,7 +324,7 @@ typeset -r HOMEDIR=$HOME # User identification # Default config file, used if no config file in user dir typeset BBCONFFILE=$HOMEDIR/.bashburnrc -typeset BBROOTDIR='@@BBROOTDIR@@' +typeset BBROOTDIR='/usr/share/bashburn/lib' typeset TERMINAL_CHARACTERISTICS typeset HISTFILE=$HOMEDIR/.bashburn_history debian/patches/series0000644000000000000000000000011411601434156012027 0ustar manpage_name_tag.patch hardcode_BBROOTDIR.patch debian_specific_paths.patch debian/patches/manpage_name_tag.patch0000644000000000000000000000551611601450127015105 0ustar Fix man page name tag Index: bashburn/bashburn_man/bashburn.template =================================================================== --- bashburn.orig/bashburn_man/bashburn.template 2011-06-25 17:03:33.457370819 +0200 +++ bashburn/bashburn_man/bashburn.template 2011-06-25 18:10:25.736929633 +0200 @@ -1,9 +1,9 @@ .TH BASHBURN 1 "6th October 2008" "" "BashBurn - Bash CD writer/burner" NAME -BashBurn (a bash script CD Burner Writer) +BashBurn - A bash script CD Burner Writer DESCRIPTION Once upon a time, or more exactly sometime around December year 2001 -if I'm not misaken, a young little nerd named Anders Lindén was trying +if I'm not misaken, a young little nerd named Anders Lindén was trying to burn some CDs with his recently bought CD-burner. He tried a lot of different programs, but for some reason it would just not work properly. So, the little nerd thought to himself: "I guess I just have to do @@ -23,7 +23,7 @@ 1. Unpack the file (And if you are reading this I guess you already did) 2. Cd into the directory and run the installation script (Install.sh) - For options, run Install.sh --help + For options, run Install.sh \-\-help (To do a global install that will affect all users on a system you will have to be root or have global write permissions) 3. Start the program by running 'bashburn' and configure it. @@ -32,7 +32,7 @@ For those that have systems where the bash executable isn't located in /bin/bash, you might need to edit the scripts so they contain the correct path, or create a symlink from the executable to /bin/bash. -(Like cd /bin && ln -s /path/to/bash ./bash) +(Like cd /bin && ln \-s /path/to/bash ./bash) Newer BashBurn versions should be able to handle systems where bash is located somewhere else, if not then let me know. @@ -70,10 +70,10 @@ For example, let's say you want to burn an ISO file. 1: Start BashBurn, pick option 10, define data. 2: Pick option 1, and follow instructions. Link the data - with 'ln -s /path/to/myfile.iso .' + with 'ln \-s /path/to/myfile.iso .' (Without the ''. The dot is important) (You can also copy the data if you prefer that, - cp -Rf ) + cp \-Rf ) 3: Return to the main menu, choose ISO and pick the Burn ISO option. 4: Done! @@ -88,8 +88,8 @@ There are 2 steps in translation process we must distinguish: -- ADD (new) translation -- UPDATE (existing) translation +\- ADD (new) translation +\- UPDATE (existing) translation Both steps are described below and each translator should know this. @@ -156,7 +156,7 @@ read more about it. Now you can begin to translate the ".po" files in your language directory. -There also graphical programms like "KBabel" which can support you by this step. +There also graphical programs like "KBabel" which can support you by this step. 2.2 debian/patches/debian_specific_paths.patch0000644000000000000000000000151111601450127016117 0ustar Fix some binary paths specific to Debian Index: bashburn/BashBurn.sh =================================================================== --- bashburn.orig/BashBurn.sh 2011-03-13 14:47:55.410653545 +0100 +++ bashburn/BashBurn.sh 2011-03-13 14:50:58.502653545 +0100 @@ -53,22 +53,22 @@ create_advanced_config () { echo -e " -BB_CDBURNCMD: cdrecord +BB_CDBURNCMD: wodim BB_DVDBURNCMD: growisofs BB_DVDBURNCMDOPTS: -r -f -v -J -joliet-long -BB_ISOCMD: mkisofs +BB_ISOCMD: genisoimage BB_DVDBLANK: dvd+rw-format BB_CDIMAGECMD: cdrdao BB_CDAUDIORIP: cdparanoia -BB_READCD: mkisofs +BB_READCD: genisoimage BB_READ_OPTS: -r -R -J -l --allow-leading-dots -BB_MP3ENC: lame +BB_MP3ENC: BB_MP3DEC: mpg123 BB_OGGENC: oggenc BB_OGGDEC: oggdec BB_FLACCMD: flac BB_EJECT: eject -BB_NORMCMD: normalize +BB_NORMCMD: normalize-audio " } debian/copyright0000644000000000000000000000305211601434156011122 0ustar Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=166 Upstream-Name: BashBurn Source: http://bashburn.dose.se/index.php Files: * Copyright: 2003-2011, Anders Lindén 2003-2011, Steven W. Orr 2003-2011, Nick Warne 2003-2011, Markus Kollmar License: GPL-2 Files: lang/Czech/* Copyright: 2009, Santiago License: GPL-2 Files: lang/Norwegian/* Copyright: 2009, Eivind ØdegÃ¥rd License: GPL-2 Files: lang/Spanish/* Copyright: 2009, Guillermo Bonevehi 2009, Guillermo Juarez License: GPL-2 Files: lang/Polish/* Copyright: 2009, Jakub Krajniak License: GPL-2 Files: lang/Italian/* Copyright: 2009, Amedeo Grazie License: GPL-2 Files: debian/* Copyright: 2011 Andreas Noteng License: GPL-2+ License: GPL-2 This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". debian/links0000644000000000000000000000006011601434156010226 0ustar usr/share/bashburn/BashBurn.sh usr/bin/bashburn debian/rules0000755000000000000000000000020011601434156010237 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 override_dh_auto_configure: make bashburn_man/Makefile chmod a-x */*.sh %: dh $@ debian/docs0000644000000000000000000000013411601434156010040 0ustar docs/ChangeLog docs/CREDITS docs/FAQ docs/HOWTO docs/README docs/TODO docs/TRANSLATION_RULE debian/compat0000644000000000000000000000000211601434156010365 0ustar 7