debian/0000755000000000000000000000000011733572132007172 5ustar debian/patches/0000755000000000000000000000000011733404743010623 5ustar debian/patches/filename-format.diff0000644000000000000000000001033311733404743014523 0ustar Author: Jens Peter Secher Last-Update: 2010-01-10 Description: Filename simplification options. Adds filename simplification options %a, %t, and %l (cf. %A, %t, %L) which make all letters lowercase and replace anything but letters, digits, and dashes with underscores. Index: asunder/src/util.c =================================================================== --- asunder.orig/src/util.c 2011-06-14 01:26:52.732473879 +0200 +++ asunder/src/util.c 2011-06-14 01:26:54.620474410 +0200 @@ -511,6 +511,7 @@ { unsigned i = 0; int len = 0; + int tmplen = 0; char * ret = NULL; int pos = 0; @@ -520,9 +521,11 @@ { switch (format[i+1]) { + case 'a': case 'A': if (artist) len += strlen(artist); break; + case 'l': case 'L': if (album) len += strlen(album); break; @@ -532,6 +535,7 @@ case 'Y': if (year) len += strlen(year); break; + case 't': case 'T': if (title) len += strlen(title); break; @@ -556,6 +560,15 @@ { switch (format[i+1]) { + case 'a': + if (artist) + { + tmplen = strlen(artist); + strncpy(&ret[pos], artist, tmplen); + simplify_chars(ret, pos, pos+tmplen); + pos += tmplen; + } + break; case 'A': if (artist) { @@ -563,6 +576,15 @@ pos += strlen(artist); } break; + case 'l': + if (album) + { + tmplen = strlen(album); + strncpy(&ret[pos], album, tmplen); + simplify_chars(ret, pos, pos+tmplen); + pos += tmplen; + } + break; case 'L': if (album) { @@ -585,6 +607,15 @@ pos += strlen(year); } break; + case 't': + if (title) + { + tmplen = strlen(title); + strncpy(&ret[pos], title, tmplen); + simplify_chars(ret, pos, pos+tmplen); + pos += tmplen; + } + break; case 'T': if (title) { @@ -806,6 +837,32 @@ } } +// makes the specified range within the string lowercase and replaces +// all problematic characters with underscores +// +// str - the string to simplify +// begin - start index (included) +// end - end index (not included) +void simplify_chars(char * str, int begin, int end) +{ + int i; + int c; + + // sanitize range + if (0 > begin) + begin = 0; + if (strlen(str) < end) + end = strlen(str); + + for (i=begin; i= 'a' && c <= 'z' || c >= '0' && c <= '9' || c == '-')) + c = '_'; + str[i] = c; + } +} + // removes leading and trailing whitespace as defined by isspace() // // str - the string to trim Index: asunder/src/util.h =================================================================== --- asunder.orig/src/util.h 2011-06-14 01:26:52.760473888 +0200 +++ asunder/src/util.h 2011-06-14 01:26:54.624474410 +0200 @@ -67,3 +67,11 @@ // so it's best to disallow MS invalid chars as well. I also disallow // period (dot) because it screws up my file name database software. YMMV #define BADCHARS "./?*|><:\"\\" + +// makes the specified range within the string lowercase and replaces +// all problematic characters with underscores +// +// str - the string to simplify +// begin - start index (included) +// end - end index (not included) +void simplify_chars(char * str, int begin, int end); debian/patches/icons.diff0000644000000000000000000000132111733404743012565 0ustar Author: Daniel Baumann Description: Fixing icon directory. Index: asunder/src/main.c =================================================================== --- asunder.orig/src/main.c 2011-02-01 20:46:46.000000000 +0100 +++ asunder/src/main.c 2011-02-01 20:57:37.000000000 +0100 @@ -99,8 +99,8 @@ global_prefs = get_default_prefs(); load_prefs(global_prefs); - add_pixmap_directory(PACKAGE_DATA_DIR "/pixmaps"); - debugLog("Pixmap dir: " PACKAGE_DATA_DIR "/pixmaps\n"); + add_pixmap_directory(PACKAGE_DATA_DIR "/icons"); + debugLog("Pixmap dir: " PACKAGE_DATA_DIR "/icons\n"); win_main = create_main(); album_artist = lookup_widget(win_main, "album_artist"); debian/patches/series0000644000000000000000000000007111733404743012036 0ustar icons.diff filename-format.diff typos-desktop-file.diff debian/patches/typos-desktop-file.diff0000644000000000000000000000265611733404743015230 0ustar --- asunder.old/asunder.desktop 2011-03-28 11:45:29.142324966 +0200 +++ asunder/asunder.desktop 2011-03-28 11:50:49.666295433 +0200 @@ -10,11 +10,12 @@ GenericName[fr]=Extracteur de CD GenericName[hu]=Audió CD Ripper és Tömörítő GenericName[ru]=Копирование звуковых CD -Comment=An application to save tracks from an Audio CD as WAV, MP3, OGG, FLAC, and/or Wavpack. +Comment=An application to save tracks from an Audio CD as WAV, MP3, OGG, FLAC, and/or Wavpack Comment[de]=Oberfläche zur Erstellung von Audio-Dateien -Comment[hu]=Egy alkalmazás ami az Audió CD-n lévő sávokat lementi, MP3, OGG, FLAC és/vagy Wavpack formátumba. -Comment[ru]=Программа для сохранения звуковых дорожек CD в файлы форматов WAV, MP3, OGG, FLAC и/или Wavpack. -Comment[sv]=Ett program för att spara spår från en ljudskiva som WAV, MP3, OGG och/eller FLAC. +Comment[hu]=Egy alkalmazás ami az Audió CD-n lévő sávokat lementi, MP3, OGG, FLAC és/vagy Wavpack formátumba +Comment[ru]=Программа для сохранения звуковых дорожек CD в файлы форматов WAV, MP3, OGG, FLAC и/или Wavpack +Comment[sv]=Ett program för att spara spår från en ljudskiva som WAV, MP3, OGG och/eller FLAC +Comment[it]=Estrai le tracce da un Audio CD salvandole in WAV, MP3, OGG, FLAC e/o Wavpack Exec=asunder Terminal=false StartupNotify=true debian/asunder.menu0000644000000000000000000000046011733404743011523 0ustar ?package(asunder):needs="X11" section="Applications/Sound"\ title="Asunder" longtitle="audio CD ripper and encoder"\ description="Asunder is a graphical Audio CD ripper and encoder. It can be used to save tracks from an Audio CDs."\ command="/usr/bin/asunder" icon="/usr/share/pixmaps/asunder.xpm" debian/control0000644000000000000000000000166611733567503010614 0ustar Source: asunder Section: sound Priority: optional Maintainer: Cleto Martín Build-Depends: debhelper (>= 7.0.50~), autotools-dev, libcddb2-dev, libgtk2.0-dev, dpkg (>= 1.15.5.6), intltool Standards-Version: 3.9.3 Vcs-Hg: http://hg.debian.org/hg/collab-maint/asunder Homepage: http://www.littlesvr.ca/asunder Package: asunder Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, cdparanoia, vorbis-tools Recommends: flac, wavpack Suggests: lame Description: graphical audio CD ripper and encoder Asunder is a graphical Audio CD ripper and encoder. It can be used to save tracks from Audio CDs. Main features: . * Supports WAV, MP3, Ogg Vorbis, FLAC, and Wavpack audio files * Uses CDDB to name and tag each track * Can encode to multiple formats in one session * Creates M3U playlists * Allows for each track to be by a different artist * Does not require a specific desktop environment (just GTK+) debian/changelog0000644000000000000000000000746711733404771011065 0ustar asunder (2.2-1) unstable; urgency=low * New upstream release. -- Cleto Martín Sat, 24 Mar 2012 18:52:57 +0100 asunder (2.1-2) unstable; urgency=low * Adopting package and updating related information (Closes: #628920). * Bumped Standards-Version to 3.9.2, no change. * Bug fix: "Typo in a .desktop entry", thanks to Andrea Carpineti (Closes: #619894). -- Cleto Martín Tue, 14 Jun 2011 01:35:49 +0200 asunder (2.1-1) unstable; urgency=low * New upstream version. (Closes: #610898, #610897) * Bumped Standards-Version to 3.9.1, no change. -- Jens Peter Secher Tue, 01 Feb 2011 20:46:03 +0100 asunder (2.0-1) unstable; urgency=low * New upstream version, which now includes the GNU/kFreeBSD patch and Brazilian patch. * Added get-orig-source target in debian/rules. * Build-depend on a proper quilt-handling version of dpkg-source instead of quilt itself. * Bumped Standards-Version to 3.9.0, no change. -- Jens Peter Secher Sat, 24 Jul 2010 10:34:58 +0200 asunder (1.9.3-2) unstable; urgency=low * Updated Portuguese (Brasil) translation from Sérgio Cipolla. (Closes: #578980) -- Jens Peter Secher Sat, 01 May 2010 15:58:19 +0200 asunder (1.9.3-1) unstable; urgency=low * New upstream version, including Portuguese (Brasil) translation from Sérgio Cipolla. (Closes: #575867) * Added watch file. * Fix grammar in description. (Closes: #568697) * Bump Standards-Version to 3.8.4, no change. -- Jens Peter Secher Wed, 21 Apr 2010 23:00:35 +0200 asunder (1.9.1-1) unstable; urgency=low * New upstream version. (Closes: #567883) -- Jens Peter Secher Tue, 02 Feb 2010 17:00:47 +0100 asunder (1.6.2-6) unstable; urgency=low * Allow digits and dashes in filename simplification mode, and describe this mode in NEWS.Debian. * Converted to dpkg-source format 3.0 (quilt). * Now using mercurial-buildpackage for public maintenance at http://hg.debian.org/hg/collab-maint/asunder. -- Jens Peter Secher Sun, 10 Jan 2010 12:24:59 +0100 asunder (1.6.2-5) unstable; urgency=low * New maintainer. (Closes: #543831) * Added VCS fields for new repository. * Added instructions for how to use the patch system. * Added filename simplification options %a, %t, and %l (cf. %A, %t, %L) which make all letters lowercase and replaces all non-ascii letters with underscores. -- Jens Peter Secher Fri, 28 Aug 2009 23:35:22 +0200 asunder (1.6.2-4) unstable; urgency=low * QA upload. * Fix FTBFS on GNU/kFreeBSD by using the FreeBSD parts when one of either __FreeBSD__ or __FreeBSD_kernel__ is defined. Add patch: + 02-kfreebsd.patch -- Cyril Brulebois Fri, 28 Aug 2009 04:00:10 +0200 asunder (1.6.2-3) unstable; urgency=low * Minimizing rules. * Updating package to standards version 3.8.3. * Removing vcs fields. * Orphaning package. -- Daniel Baumann Thu, 27 Aug 2009 06:55:56 +0200 asunder (1.6.2-2) unstable; urgency=low * Using quilt rather than dpatch. * Updating version number in manpage. * Removing trailing slash from install file. * Adding description in menu file. * Passing flags to configure directly. * Updating year in copyright. -- Daniel Baumann Thu, 01 Jan 2009 22:20:00 -0500 asunder (1.6.2-1) unstable; urgency=low * Replacing obsolete dh_clean -k with dh_prep. * Prefixing debhelper files with package name. * Merging upstream version 1.6.2. -- Daniel Baumann Sun, 14 Dec 2008 20:31:00 +0100 asunder (1.6.1-1) unstable; urgency=low * Initial release (Closes: #489772). -- Daniel Baumann Sun, 26 Oct 2008 16:14:00 +0100 debian/asunder.install0000644000000000000000000000004411733404743012223 0ustar debian/pixmaps/* /usr/share/pixmaps debian/rules0000755000000000000000000000150111733404743010251 0ustar #!/usr/bin/make -f # debian/rules for asunder. VERSION=$(shell head -1 debian/changelog | cut -f2 -d" " | tr -d \(\) | cut -f1 -d"-") get-orig-source: #wget http://www.littlesvr.ca/asunder/releases/asunder-2.0.tar.bz2 mkdir -p asunder-$(VERSION) tar --exclude=debian --exclude=\*~ --exclude=\.hg --exclude=\.pc \ --exclude=asunder-$(VERSION) --exclude=accounts.txt -cf - . \ | ( cd asunder-$(VERSION) && tar xf - ) tar -czf ../asunder_$(VERSION).orig.tar.gz asunder-$(VERSION) $(RM) -r asunder-$(VERSION) %: dh ${@} override_dh_auto_clean: dh_auto_clean rm -f config.guess config.sub override_dh_auto_configure: cp -f /usr/share/misc/config.guess . cp -f /usr/share/misc/config.sub . dh_auto_configure override_dh_auto_install: dh_auto_install mv debian/asunder/usr/share/pixmaps debian/asunder/usr/share/icons debian/pixmaps/0000755000000000000000000000000011733404743010655 5ustar debian/pixmaps/asunder.xpm0000644000000000000000000001556711733404743013062 0ustar /* XPM */ static char * asunder_xpm[] = { "32 32 300 2", " c None", ". c #FF0000", "+ c #A85352", "@ c #818281", "# c #949393", "$ c #A2A1A2", "% c #A7A6A8", "& c #AEAEAF", "* c #B4B4B4", "= c #AF3433", "- c #6A6A6A", "; c #848383", "> c #999899", ", c #A2A2A2", "' c #B6B7B6", ") c #B2B3B2", "! c #FD0202", "~ c #E20F0F", "{ c #FE0101", "] c #C51C1C", "^ c #5E5A5A", "/ c #767676", "( c #8E8E8F", "_ c #AEAEAE", ": c #B6B6B6", "< c #B5B5B4", "[ c #ABABAA", "} c #F40505", "| c #913331", "1 c #F40404", "2 c #D41515", "3 c #685151", "4 c #717071", "5 c #919191", "6 c #AFAFAF", "7 c #ACACAB", "8 c #666766", "9 c #9B7577", "0 c #E12021", "a c #FB0202", "b c #9E2929", "c c #6A3937", "d c #E40909", "e c #E50D0D", "f c #764848", "g c #6B6C6C", "h c #8F8F8F", "i c #ABABAB", "j c #B3B3B2", "k c #B2B2B1", "l c #B0B0AE", "m c #777776", "n c #020202", "o c #827F80", "p c #AD4749", "q c #F90505", "r c #DE0E0E", "s c #623A3B", "t c #573837", "u c #D70E0D", "v c #F20606", "w c #844242", "x c #6E6E6E", "y c #8A8989", "z c #A8A7A7", "A c #B1B0AF", "B c #B2B1B0", "C c #B0B0AD", "D c #AAAAA8", "E c #717170", "F c #7A7678", "G c #7C6668", "H c #EF0C0C", "I c #8D2F30", "J c #3F3D3E", "K c #453A3A", "L c #C61413", "M c #FE0000", "N c #9B3A3A", "O c #696868", "P c #828281", "Q c #A1A19F", "R c #ABABA9", "S c #ADADAA", "T c #ADADAB", "U c #ABACAA", "V c #646464", "W c #000000", "X c #7C7979", "Y c #726D6D", "Z c #B03B3C", "` c #E50D0E", " . c #554749", ".. c #3D3B3C", "+. c #3F3D3D", "@. c #B41919", "#. c #B42B2B", "$. c #656564", "%. c #7B7A79", "&. c #999997", "*. c #A8A8A6", "=. c #AEAEAD", "-. c #A2A3A2", ";. c #4B4B4B", ">. c #858583", ",. c #777675", "'. c #915A59", "). c #EC0F0F", "!. c #9F2425", "~. c #613738", "{. c #592F30", "]. c #411616", "^. c #960505", "/. c #D31818", "(. c #5F5F5E", "_. c #727270", ":. c #949594", "<. c #A4A5A4", "[. c #A9AAA9", "}. c #A9A9A8", "|. c #8E8E8D", "1. c #1F1F1F", "2. c #7E7F7B", "3. c #7B7C78", "4. c #C73331", "5. c #FC0101", "6. c #E60909", "7. c #DC0A0A", "8. c #DA0505", "9. c #D70000", "0. c #E70000", "a. c #EC0A09", "b. c #5B5B5B", "c. c #6A6B6A", "d. c #8B8B8A", "e. c #9D9E9C", "f. c #A4A5A3", "g. c #A5A6A4", "h. c #626261", "i. c #090909", "j. c #868484", "k. c #996463", "l. c #FD0101", "m. c #624E4E", "n. c #80807F", "o. c #949593", "p. c #9E9F9D", "q. c #929391", "r. c #212121", "s. c #818180", "t. c #857878", "u. c #D12D2D", "v. c #7A3E3D", "w. c #5C5C5B", "x. c #797A78", "y. c #90918E", "z. c #9A9B99", "A. c #010101", "B. c #919290", "C. c #8D8E8C", "D. c #B75B5A", "E. c #F90707", "F. c #ED0D0D", "G. c #824C4B", "H. c #535453", "I. c #2D2D2C", "J. c #0A0A0A", "K. c #0D0D0D", "L. c #232323", "M. c #464746", "N. c #CB1818", "O. c #982A29", "P. c #535351", "Q. c #6F6F6D", "R. c #868784", "S. c #646563", "T. c #111111", "U. c #949290", "V. c #E91E1D", "W. c #C42A2A", "X. c #655D5D", "Y. c #575757", "Z. c #505050", "`. c #474747", " + c #4E4E4E", ".+ c #595958", "++ c #B52524", "@+ c #B21D1C", "#+ c #4A4B48", "$+ c #646562", "%+ c #71726F", "&+ c #A1A29D", "*+ c #C95F5C", "=+ c #F80606", "-+ c #7B5A5B", ";+ c #5B5A5B", ">+ c #686868", ",+ c #7A7A7A", "'+ c #7E7D7C", ")+ c #7B7C7B", "!+ c #747573", "~+ c #A94341", "{+ c #CA1211", "]+ c #4F413E", "^+ c #454543", "/+ c #161616", "(+ c #A9AAA8", "_+ c #A4A3A0", ":+ c #B6807E", "<+ c #C16C6D", "[+ c #C16B6B", "}+ c #B55E5F", "|+ c #9D5555", "1+ c #5F5F60", "2+ c #5A5A5B", "3+ c #696969", "4+ c #7D7D7D", "5+ c #939391", "6+ c #989896", "7+ c #969695", "8+ c #8E8F8D", "9+ c #967B78", "0+ c #A75451", "a+ c #994541", "b+ c #86322D", "c+ c #6A2A25", "d+ c #3C3431", "e+ c #171817", "f+ c #030303", "g+ c #AAAAAA", "h+ c #A5A5A5", "i+ c #A8A7A8", "j+ c #A7A6A7", "k+ c #A09F9F", "l+ c #868686", "m+ c #6F6F6F", "n+ c #676767", "o+ c #919190", "p+ c #A4A4A2", "q+ c #A9A9A7", "r+ c #979895", "s+ c #8B8D89", "t+ c #71726E", "u+ c #595A54", "v+ c #30322E", "w+ c #111211", "x+ c #ACABAB", "y+ c #9D9C9D", "z+ c #838383", "A+ c #787878", "B+ c #7B7B7B", "C+ c #8C8C8C", "D+ c #9E9E9D", "E+ c #A0A19F", "F+ c #9B9C99", "G+ c #91928F", "H+ c #797A76", "I+ c #50514E", "J+ c #0D0D0C", "K+ c #ACACAC", "L+ c #AAA9AA", "M+ c #A4A4A6", "N+ c #A7A7A8", "O+ c #A3A3A4", "P+ c #9F9F9F", "Q+ c #9C9C9B", "R+ c #9D9D9C", "S+ c #A4A5A2", "T+ c #A0A19E", "U+ c #929390", "V+ c #787977", "W+ c #373736", "X+ c #050505", "Y+ c #A9A8A9", "Z+ c #B3B3B3", "`+ c #B2B2B2", " @ c #B0B0AF", ".@ c #ADADAC", "+@ c #ADACAB", "@@ c #A3A4A2", "#@ c #858685", "$@ c #4B4C4B", "%@ c #222222", "&@ c #A9A9A9", "*@ c #B4B4B3", "=@ c #B1B1B0", "-@ c #ABABA8", ";@ c #949493", ">@ c #717271", ",@ c #424342", "'@ c #101010", ")@ c #626262", "!@ c #767675", "~@ c #7E7E7E", "{@ c #818080", "]@ c #787877", "^@ c #60605F", "/@ c #464646", "(@ c #252525", "_@ c #040404", " ", " ", " ", " ", " . . . . . ", " . . . . . . ", " . . . . . . . + @ # $ % & * ", " . . . . . . . = - ; > , * ' ) ", " ! . . . ~ { . . ] ^ / ( _ : : < [ ", " { . . } | 1 . . 2 3 4 5 6 < < * 7 8 ", " 9 0 . . a b c d . . e f g h i j j k l m n ", " o p q . . r s t u . . v w x y z A B C D E n ", " F G H . . . I J K L . . M N O P Q R S T U V W W ", " X Y Z . . . ` ...+.@.. . . #.$.%.&.*.=.=.-.;.W W ", " >.,.'.).. . a !.~.{.].^.. . . /.(._.:.<.[.}.|.1.W W ", " 2.3.4.{ . . 5.6.7.8.9.0.. . . a.b.c.d.e.f.g.h.i.W W ", " j.o k.l.. . . . . . . . . . . . . m.h.n.o.p.q.r.W W ", " s.t.u.. . . . . . . . . . . . . . v.w.x.y.z.h.A.W W ", " B.C.D.E.. . F.G.H.I.J.K.L.M.N.. . . O.P.Q.R.S.T.W W W ", " o.U.V.. . . W.X.Y.Z.`. +.+w.++. . . @+#+$+%+r.n W W ", " &+*+. . . =+-+b.;+>+,+'+)+!+~+. . . {+]+^+/+W W W ", " (+_+:+<+[+}+|+1+2+3+4+5+6+7+8+9+0+a+b+c+d+e+f+W W W ", " g+h+i+j+k+l+m+V n+,+o+p+q+p+p.r+s+t+u+v+w+W W W W ", " g+x+z y+z+4+A+B+C+D+*.7 f.E+F+G+H+I+J+W W W W ", " K+L+M+N+O+P+Q+R+p+*.7 i S+T+U+V+W+X+W W W W ", " N+Y+_ Z+`+ @=..@+@R =.}.@@#@$@%@W W W W W ", " &@_ *@k j =@-@p+;@>@,@'@W W W W W ", " )@!@~@{@]@^@/@(@'@W W W W W W ", " A.f+_@A.W W W W W W W ", " W W W W W W W ", " ", " "}; debian/source/0000755000000000000000000000000011733404743010474 5ustar debian/source/format0000644000000000000000000000001411733404743011702 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211733404743010372 0ustar 7 debian/asunder.manpages0000644000000000000000000000002211733404743012344 0ustar debian/manpages/* debian/copyright0000644000000000000000000000405211733567517011141 0ustar Author: Andrew Smith Download: http://www.littlesvr.ca/asunder/ Files: * Copyright: (C) 2005 Eric Lathrop (C) 2007-2008 Andrew Smith License: GPL-2 This program 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; version 2 of the License. . This program 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2 file. Files: debian/* Copyright: (C) 2008-2009 Daniel Baumann Copyright: (C) 2009-2011 Jens Peter Secher Copyright: (C) 2011 Cleto Martín License: GPL-2+ This program 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 program 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2 file. debian/NEWS.Debian0000644000000000000000000000046511733404743011061 0ustar asunder (1.6.2-6) unstable; urgency=low * It is now possible to get simplified filenames by using options %a, %t, and %l (cf. %A, %t, %L) which make all letters lowercase and replaces all special characters with underscores. -- Jens Peter Secher Sun, 10 Jan 2010 12:14:34 +0100 debian/manpages/0000755000000000000000000000000011733404743010767 5ustar debian/manpages/asunder.10000644000000000000000000000202011733404743012504 0ustar .TH ASUNDER 1 "2008-12-14" "1.6.2" "graphical audio CD ripper and encoder" .SH NAME asunder \- graphical audio CD ripper and encoder .SH SYNOPSIS \fBasunder\fR .SH DESCRIPTION Asunder is a graphical Audio CD ripper and encoder. It can be used to save tracks from an Audio CDs. Main features: .PP * Supports WAV, MP3, Ogg Vorbis, FLAC, and Wavpack audio files * Uses CDDB to name and tag each track * Can encode to multiple formats in one session * Creates M3U playlists * Allows for each track to be by a different artist * Does not require a specific desktop environment (just GTK+) .SH OPTIONS asunder has no options. .SH HOMEPAGE More information about asunder can be found at <\fIhttp://www.littlesvr.ca/asunder/\fR>. .SH AUTHOR asunder was written by Eric Lathrop <\fIeric@ericlathrop.com\fR> and Andrew Smith <\fIhttp://www.littlesvr.ca/misc/contactandrew.php\fR> (current maintainer). .PP This manual page was written by Daniel Baumann <\fIdaniel@debian.org\fR>, for the Debian project (but may be used by others). debian/watch0000644000000000000000000000011211733404743010217 0ustar version=3 http://www.littlesvr.ca/asunder/releases/asunder-(.*)\.tar\.bz2