debian/0000755000000000000000000000000011524476014007172 5ustar debian/compat0000644000000000000000000000000211464065715010375 0ustar 7 debian/patches/0000755000000000000000000000000011473515731010624 5ustar debian/patches/03-pathmax.patch0000644000000000000000000000326511473504722013533 0ustar Description: Avoid unconditionalized use of PATH_MAX to fix build failure on hurd architecture. The variable conffile is declared but not used. Author: Alessio Treglia Forwarded: https://sourceforge.net/support/tracker.php?aid=3102139 --- src/main.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) --- jackeq.orig/src/main.c +++ jackeq/src/main.c @@ -62,11 +62,12 @@ static void help() int main(int argc, char *argv[]) { - char rcfile[PATH_MAX], title[128]; + char *rcfile, title[128]; int fd; int run; int sig; sigset_t allsignals; + size_t rcfile_size; int opt; int option_index; @@ -153,7 +154,10 @@ int main(int argc, char *argv[]) /* look for the rcfile, if its there parse it */ - snprintf(rcfile, PATH_MAX, "%s/%s/%s", getenv("HOME"), JACKHOME, JACKRC); + /* $HOME + JACKHOME + JACKRC + 3 = $HOME + '/' JACKHOME + '/' + JACKRC + '\0' */ + rcfile_size = strlen(getenv("HOME")) + strlen(JACKHOME) + strlen(JACKRC) + 3; + rcfile = malloc(rcfile_size); + snprintf(rcfile, rcfile_size, "%s/%s/%s", getenv("HOME"), JACKHOME, JACKRC); if ((fd = open(rcfile, O_RDONLY)) >= 0) { close(fd); printf("Using jackeqrc file: %s\n", rcfile); @@ -216,6 +220,7 @@ int main(int argc, char *argv[]) process_init(); g_timeout_add(100, update_meters, NULL); gtk_main(); + free(rcfile); return 0; @@ -252,7 +257,7 @@ void getSettings() // gsize length; GtkWidget *slider; GtkWidget *button; - char name[255],channelName[255], conffile[PATH_MAX], vname[5]; + char name[255],channelName[255], *conffile, vname[5]; int i,g; // printf("in getSettings\n"); debian/patches/series0000644000000000000000000000006611473502353012037 0ustar 01-binutils_gold.patch 02-l10n.patch 03-pathmax.patch debian/patches/01-binutils_gold.patch0000644000000000000000000000210511473515731014717 0ustar Description: FTBFS with binutils-gold. Add -ldl to prevent FTBFS with the new version of the linker. Author: Alessio Treglia Bug-Debian: http://bugs.debian.org/554927 Forwarded: no --- src/Makefile.am | 3 +-- src/Makefile.in | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) --- jackeq.orig/src/Makefile.am +++ jackeq/src/Makefile.am @@ -6,7 +6,6 @@ INCLUDES = \ @PACKAGE_CFLAGS@ jackeq_CFLAGS = -g -ffast-math -jackeq_LDFLAGS = -lm bin_PROGRAMS = jackeq @@ -29,4 +28,4 @@ jackeq_SOURCES = \ support.c support.h \ help.c help.h -jackeq_LDADD = @PACKAGE_LIBS@ +jackeq_LDADD = @PACKAGE_LIBS@ -lm -ldl --- jackeq.orig/src/Makefile.in +++ jackeq/src/Makefile.in @@ -186,7 +186,7 @@ INCLUDES = \ @PACKAGE_CFLAGS@ jackeq_CFLAGS = -g -ffast-math -jackeq_LDFLAGS = -lm +jackeq_LDFLAGS = jackeq_SOURCES = \ callbacks.c callbacks.h callbacks_help.h \ db.h \ @@ -206,7 +206,7 @@ jackeq_SOURCES = \ support.c support.h \ help.c help.h -jackeq_LDADD = @PACKAGE_LIBS@ +jackeq_LDADD = @PACKAGE_LIBS@ -lm -ldl all: all-am .SUFFIXES: debian/patches/02-l10n.patch0000644000000000000000000001500211473503424012630 0ustar Author: Chris Leick Description: Add german translation. Bug-Debian: http://bugs.debian.org/583923 Forwarded: https://sourceforge.net/support/tracker.php?aid=3049384 --- configure | 2 po/de.po | 127 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/it.po | 124 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 252 insertions(+), 1 deletion(-) --- /dev/null +++ jackeq/po/de.po @@ -0,0 +1,127 @@ +# German translation of jackEQ. +# Copyright (C) 2004 Free Ekanayaka. +# This file is distributed under the same license as the jackeq package. +# Chris Leick , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: jackeq 0.4.1-1\n" +"Report-Msgid-Bugs-To: Free Ekanayaka \n" +"POT-Creation-Date: 2006-04-25 09:53+0700\n" +"PO-Revision-Date: 2010-05-31 19:24+0100\n" +"Last-Translator: Chris Leick \n" +"Language-Team: Debian German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + + +#: src/interface.c:234 +msgid "jackEQ" +msgstr "jackEQ" + +#: src/interface.c:259 +msgid "_File" +msgstr "_Datei" + +#: src/interface.c:268 +msgid "_About" +msgstr "_Über" + +#: src/interface.c:278 +msgid "Ports" +msgstr "Ports" + +#: src/interface.c:308 +msgid "Monitor" +msgstr "Monitor" + +#: src/interface.c:378 +# heißt in der Jack-übersetzung auch Master +msgid "Master" +msgstr "Master" + +#: src/interface.c:464 src/interface.c:606 src/interface.c:748 +#: src/interface.c:890 +msgid "Treble" +msgstr "Höhen" + +#: src/interface.c:481 src/interface.c:623 src/interface.c:765 +#: src/interface.c:907 +# Tonregler: Höhen Mitte Bass +msgid "Mid" +msgstr "Mitte" + +#: src/interface.c:498 src/interface.c:640 src/interface.c:782 +#: src/interface.c:924 +msgid "Bass" +msgstr "Bass" + +#: src/interface.c:515 src/interface.c:657 src/interface.c:799 +#: src/interface.c:941 src/interface.c:1367 src/interface.c:1442 +msgid "Mon" +msgstr "Mon" + +#: src/interface.c:520 src/interface.c:662 src/interface.c:804 +#: src/interface.c:946 src/interface.c:1029 src/interface.c:1143 +#: src/interface.c:1164 src/interface.c:1231 +msgid "1" +msgstr "1" + +#: src/interface.c:525 src/interface.c:667 src/interface.c:809 +#: src/interface.c:951 src/interface.c:1039 src/interface.c:1097 +#: src/interface.c:1173 src/interface.c:1240 +msgid "2" +msgstr "2" + +#: src/interface.c:535 +msgid "Channel 1" +msgstr "Kanal 1" + +#: src/interface.c:677 +msgid "Channel 2" +msgstr "Kanal 2" + +#: src/interface.c:819 +msgid "Channel 3" +msgstr "Kanal 3" + +#: src/interface.c:961 +msgid "Channel 4" +msgstr "Kanal 4" + +#: src/interface.c:1048 src/interface.c:1182 src/interface.c:1249 +msgid "3" +msgstr "3" + +#: src/interface.c:1057 src/interface.c:1116 src/interface.c:1192 +#: src/interface.c:1258 +msgid "4" +msgstr "4" + +#: src/interface.c:1066 src/interface.c:1125 src/interface.c:1201 +#: src/interface.c:1268 +msgid "all" +msgstr "alle" + +#: src/interface.c:1075 src/interface.c:1134 src/interface.c:1210 +#: src/interface.c:1277 +msgid "mute" +msgstr "stumm" + +#: src/interface.c:1107 +msgid " 3" +msgstr " 3" + +#: src/interface.c:1317 +msgid "Aux 1" +msgstr "Aux 1" + +#: src/interface.c:1392 +msgid "Aux 2" +msgstr "Aux 2" + +#: src/support.c:90 src/support.c:114 +#, c-format +msgid "Couldn't find pixmap file: %s" +msgstr "Pixmap-Datei konnte nicht gefunden werden: %s" --- jackeq.orig/configure +++ jackeq/configure @@ -6402,7 +6402,7 @@ cat >>confdefs.h <<_ACEOF _ACEOF -ALL_LINGUAS="" +ALL_LINGUAS="de it" # On IRIX 5.3, sys/types and inttypes.h are conflicting. --- /dev/null +++ jackeq/po/it.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2004 Free Ekanayaka. +# This file is distributed under the same license as the PACKAGE package. +# Alessio Treglia , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: jackeq 0.4.1-2\n" +"Report-Msgid-Bugs-To: jackeq@packages.debian.org\n" +"POT-Creation-Date: 2006-04-25 09:53+0700\n" +"PO-Revision-Date: 2010-11-19 09:15+0100\n" +"Last-Translator: Alessio Treglia \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/interface.c:234 +msgid "jackEQ" +msgstr "jackEQ" + +#: src/interface.c:259 +msgid "_File" +msgstr "_File" + +#: src/interface.c:268 +msgid "_About" +msgstr "I_nformazioni" + +#: src/interface.c:278 +msgid "Ports" +msgstr "Porte" + +#: src/interface.c:308 +msgid "Monitor" +msgstr "Monitor" + +#: src/interface.c:378 +msgid "Master" +msgstr "Principale" + +#: src/interface.c:464 src/interface.c:606 src/interface.c:748 +#: src/interface.c:890 +msgid "Treble" +msgstr "Alti" + +#: src/interface.c:481 src/interface.c:623 src/interface.c:765 +#: src/interface.c:907 +msgid "Mid" +msgstr "Medi" + +#: src/interface.c:498 src/interface.c:640 src/interface.c:782 +#: src/interface.c:924 +msgid "Bass" +msgstr "Bassi" + +#: src/interface.c:515 src/interface.c:657 src/interface.c:799 +#: src/interface.c:941 src/interface.c:1367 src/interface.c:1442 +msgid "Mon" +msgstr "Mon" + +#: src/interface.c:520 src/interface.c:662 src/interface.c:804 +#: src/interface.c:946 src/interface.c:1029 src/interface.c:1143 +#: src/interface.c:1164 src/interface.c:1231 +msgid "1" +msgstr "1" + +#: src/interface.c:525 src/interface.c:667 src/interface.c:809 +#: src/interface.c:951 src/interface.c:1039 src/interface.c:1097 +#: src/interface.c:1173 src/interface.c:1240 +msgid "2" +msgstr "2" + +#: src/interface.c:535 +msgid "Channel 1" +msgstr "Canale 1" + +#: src/interface.c:677 +msgid "Channel 2" +msgstr "Canale 2" + +#: src/interface.c:819 +msgid "Channel 3" +msgstr "Canale 3" + +#: src/interface.c:961 +msgid "Channel 4" +msgstr "Canale 4" + +#: src/interface.c:1048 src/interface.c:1182 src/interface.c:1249 +msgid "3" +msgstr "3" + +#: src/interface.c:1057 src/interface.c:1116 src/interface.c:1192 +#: src/interface.c:1258 +msgid "4" +msgstr "4" + +#: src/interface.c:1066 src/interface.c:1125 src/interface.c:1201 +#: src/interface.c:1268 +msgid "all" +msgstr "tutti" + +#: src/interface.c:1075 src/interface.c:1134 src/interface.c:1210 +#: src/interface.c:1277 +msgid "mute" +msgstr "muto" + +#: src/interface.c:1107 +msgid " 3" +msgstr "3" + +#: src/interface.c:1317 +msgid "Aux 1" +msgstr "Aux 1" + +#: src/interface.c:1392 +msgid "Aux 2" +msgstr "Aux 2" + +#: src/support.c:90 src/support.c:114 +#, c-format +msgid "Couldn't find pixmap file: %s" +msgstr "Impossibile trovare il file pixmap: %s" debian/rules0000755000000000000000000000022111473537447010260 0ustar #!/usr/bin/make -f LDFLAGS=-Wl,--as-needed %: dh $@ --with autotools_dev override_dh_clean: dh_clean -Xautom4te.cache -X*.deps -X*~ -X*.bak debian/docs0000644000000000000000000000001411464065715010045 0ustar README TODO debian/jackeq.xpm0000644000000000000000000002022611464065715011165 0ustar /* XPM */ static char * jackeq_xpm[] = { "32 32 382 2", " c None", ". c #897634", "+ c #8C7936", "@ c #8E7B38", "# c #907D3A", "$ c #937F3C", "% c #95813D", "& c #97833F", "* c #998541", "= c #9B8742", "- c #9D8A43", "; c #9E8C44", "> c #A18F47", ", c #A6944A", "' c #AB994E", ") c #AF9D51", "! c #B3A155", "~ c #B5A457", "{ c #B2A054", "] c #AD9B50", "^ c #A9974D", "/ c #A49249", "( c #A08E46", "_ c #9E8B44", ": c #9C8942", "< c #9A8641", "[ c #988440", "} c #96823E", "| c #94813C", "1 c #927F3B", "2 c #907D39", "3 c #8D7A37", "4 c #8B7835", "5 c #937F3B", "6 c #9B8842", "7 c #9F8D45", "8 c #A39148", "9 c #A8964C", "0 c #B19F54", "a c #B6A458", "b c #BBA95C", "c c #BDAC5D", "d c #B9A75A", "e c #B4A256", "f c #B09E52", "g c #9C8943", "h c #9A8742", "i c #988540", "j c #94803C", "k c #927E3A", "l c #8F7C38", "m c #8F7C39", "n c #98833F", "o c #A5934A", "p c #AA984E", "q c #AF9D52", "r c #B9A85A", "s c #BEAD5D", "t c #C2B260", "u c #C4B362", "v c #C0AF5F", "w c #BCAB5C", "x c #B7A659", "y c #998540", "z c #97823E", "A c #9C8842", "B c #A29047", "C c #A7954B", "D c #B8A659", "E c #BCAB5D", "F c #C1B160", "G c #C5B462", "H c #C8B866", "I c #CABB68", "J c #C7B765", "K c #C3B361", "L c #BFAF5F", "M c #BBA95B", "N c #B5A357", "O c #B09E53", "P c #A08E45", "Q c #917E3A", "R c #927E3B", "S c #98843F", "T c #AA984D", "U c #BBAA5C", "V c #C0B05F", "W c #C4B462", "X c #C8B966", "Y c #CCBD6A", "Z c #D0C16D", "` c #D2C36E", " . c #CFBF6B", ".. c #CBBB68", "+. c #C2B261", "@. c #BEAD5E", "#. c #A28F47", "$. c #9A8642", "%. c #A6944B", "&. c #BAA85B", "*. c #BFAE5E", "=. c #C3B362", "-. c #CDBD6A", ";. c #D1C16D", ">. c #D5C670", ",. c #D9CB74", "'. c #DBCD75", "). c #D7C972", "!. c #D3C46F", "~. c #CFC06C", "{. c #C7B664", "]. c #C1B15F", "^. c #B7A558", "/. c #B19F53", "(. c #A49149", "_. c #9F8C45", ":. c #96833E", "<. c #D1C26E", "[. c #D6C871", "}. c #DACC75", "|. c #DED078", "1. c #E1D47A", "2. c #E3D67C", "3. c #E0D279", "4. c #DCCF77", "5. c #D9CA73", "6. c #D4C570", "7. c #D0C06C", "8. c #C7B665", "9. c #B5A356", "0. c #AE9C50", "a. c #9D8943", "b. c #A59349", "c. c #C3B261", "d. c #DCCE76", "e. c #E4D67C", "f. c #E7DB7F", "g. c #EADE82", "h. c #ECE083", "i. c #E9DC81", "j. c #E5D97E", "k. c #E2D57B", "l. c #D5C671", "m. c #C6B564", "n. c #9D8A44", "o. c #A18E46", "p. c #BAA85A", "q. c #C8B765", "r. c #CDBE6A", "s. c #D9CA74", "t. c #DED077", "u. c #E2D47B", "v. c #E6D97E", "w. c #EADD81", "x. c #EDE184", "y. c #F0E587", "z. c #F3E889", "A. c #F5E98A", "B. c #F2E788", "C. c #EFE386", "D. c #E8DB80", "E. c #E4D77D", "F. c #E0D37A", "G. c #CBBB69", "H. c #C5B563", "I. c #BEAE5E", "J. c #AE9C51", "K. c #CEBE6B", "L. c #E4D87D", "M. c #ECE084", "N. c #F4E88A", "O. c #F7EC8C", "P. c #F9EE8E", "Q. c #F9EF8F", "R. c #FAF08F", "S. c #F9EF8E", "T. c #F8EE8D", "U. c #F6EB8B", "V. c #F2E789", "W. c #EBDF83", "X. c #E7DB80", "Y. c #E3D67B", "Z. c #D8CA73", "`. c #C5B463", " + c #B3A255", ".+ c #BEAD5F", "++ c #C7B764", "@+ c #CEBF6B", "#+ c #D6C771", "$+ c #DDCF77", "%+ c #F1E587", "&+ c #F5EA8A", "*+ c #F7ED8D", "=+ c #F8EE8E", "-+ c #F6EC8D", ";+ c #F4E98B", ">+ c #F3E88A", ",+ c #F5EA8C", "'+ c #F7ED8E", ")+ c #F9EE8F", "!+ c #FAEF8F", "~+ c #F6EC8C", "{+ c #EFE385", "]+ c #EBDE82", "^+ c #D4C46F", "/+ c #CCBC69", "(+ c #D8C973", "_+ c #DFD279", ":+ c #E6DA7E", "<+ c #F1E588", "[+ c #F5EA8B", "}+ c #F1E689", "|+ c #EEE387", "1+ c #ECE085", "2+ c #E9DE83", "3+ c #E8DD83", "4+ c #EBDF84", "5+ c #ECE186", "6+ c #EFE488", "7+ c #F2E78A", "8+ c #F7EC8D", "9+ c #F8EE8F", "0+ c #F4E98A", "a+ c #EADD82", "b+ c #E4D77C", "c+ c #D4C670", "d+ c #F2E688", "e+ c #F6EB8C", "f+ c #EFE487", "g+ c #ECE185", "h+ c #E7DC81", "i+ c #E4D97F", "j+ c #E2D77E", "k+ c #E0D57C", "l+ c #DFD37B", "m+ c #DED27B", "n+ c #DFD47C", "o+ c #E1D67D", "p+ c #E3D87E", "q+ c #E5DA80", "r+ c #E8DD82", "s+ c #EADF84", "t+ c #EDE286", "u+ c #F8ED8D", "v+ c #E8DC80", "w+ c #F6EC8B", "x+ c #E6DB81", "y+ c #E3D87F", "z+ c #DED37B", "A+ c #DDD17A", "B+ c #DACE78", "C+ c #D9CD77", "D+ c #D7CB76", "E+ c #D6CA75", "F+ c #D5C974", "G+ c #D4C874", "H+ c #D5C975", "I+ c #D7CB75", "J+ c #D8CC76", "K+ c #DBCF78", "L+ c #E7DC82", "M+ c #EADE83", "N+ c #E4D980", "O+ c #E1D57D", "P+ c #D8CC77", "Q+ c #D2C673", "R+ c #D1C572", "S+ c #CFC371", "T+ c #CEC270", "U+ c #CDC16F", "V+ c #CBC06E", "W+ c #CABE6D", "X+ c #C9BE6D", "Y+ c #C9BD6D", "Z+ c #CBBF6D", "`+ c #CCC06F", " @ c #D0C471", ".@ c #D1C672", "+@ c #D3C773", "@@ c #DCD17A", "#@ c #CCC06E", "$@ c #CBBF6E", "%@ c #C8BC6C", "&@ c #C6BB6B", "*@ c #C5BA6A", "=@ c #C4B969", "-@ c #C3B868", ";@ c #C3B869", ">@ c #C2B767", ",@ c #C3B768", "'@ c #C6BA6A", ")@ c #C7BC6B", "!@ c #C8BD6C", "~@ c #EBE085", "{@ c #E7DB81", "]@ c #E3D77E", "^@ c #E0D47C", "/@ c #D7CC76", "(@ c #CFC370", "_@ c #CABF6D", ":@ c #CEC370", "<@ c #D2C672", "[@ c #E9DE82", "}@ c #F5EB8B", "|@ c #EBE084", "1@ c #DBD079", "2@ c #E6DA80", "3@ c #F0E589", "4@ c #F4EA8B", "5@ c #E9DD81", "6@ c #F0E486", "7@ c #F8ED8E", "8@ c #EEE286", "9@ c #E2D67D", "0@ c #E1D57C", "a@ c #E5D980", "b@ c #F3E78A", "c@ c #E6D97F", "d@ c #D6C772", "e@ c #F4EA8C", "f@ c #F6EB8D", "g@ c #EDE185", "h@ c #DBCD76", "i@ c #E6DA7F", "j@ c #EBDF82", "k@ c #EFE486", "l@ c #EEE285", "m@ c #DFD178", "n@ c #D2C26E", "o@ c #C9BA67", "p@ c #C2B161", "q@ c #AC9A4F", "r@ c #B6A457", "s@ c #DED178", "t@ c #F3E789", "u@ c #F1E688", "v@ c #E1D47B", "w@ c #D7C872", "x@ c #BBAA5B", "y@ c #A08D45", "z@ c #B8A759", "A@ c #C6B664", "B@ c #D7C973", "C@ c #E1D37A", "D@ c #E5D87D", "E@ c #EDE083", "F@ c #F1E687", "G@ c #E7DA7F", "H@ c #CABA68", "I@ c #BAA95B", "J@ c #D1C26D", "K@ c #EBDE83", "L@ c #CABA67", "M@ c #BFAE5F", "N@ c #A9974C", "O@ c #97843F", "P@ c #DDD077", "Q@ c #CFBF6C", "R@ c #B4A255", "S@ c #AD9B4F", "T@ c #A08D46", "U@ c #AB994F", "V@ c #D0C16C", "W@ c #D4C56F", "X@ c #D6C872", "Y@ c #CBBA67", "Z@ c #C1B060", "`@ c #998641", " # c #CBBC69", ".# c #C1B260", "+# c #93803C", "@# c #CAB967", "## c #917D3A", "$# c #B8A75A", "%# c #A29048", "&# c #9F8C44", "*# c #B8A65A", "=# c #97833E", "-# c #A18F46", ";# c #887533", "># c #8A7734", ",# c #94813D", ". + @ # $ % & * = - ; > , ' ) ! ~ { ] ^ / ( _ : < [ } | 1 2 3 4 ", "4 3 2 5 % & * 6 - 7 8 9 ] 0 a b c d e f ' , > ; g h i } j k l + ", "3 m 5 % n * 6 _ ( o p q e r s t u v w x { ] 9 8 7 - = y z j k @ ", "@ 1 % n < A ; B C ] { D E F G H I J K L M N O ' o P - h * z j Q ", "R % S < g 7 / T f ~ U V W X Y Z ` ...J +.@.d ! ] C #._ 6 * z j ", "% [ $.- ( %.] ! &.*.=.H -.;.>.,.'.).!.~...{.].c ^./.p (._.g * :.", "[ = _ B T O x s K H -.<.[.}.|.1.2.3.4.5.6.7...8.F U 9.0.C ( a.< ", "6 _.b.] N w c.H -.` ).d.3.e.f.g.h.i.j.k.|.}.l.Z ..m.V r { T B n.", "o.^ { p.F q.r.!.s.t.u.v.w.x.y.z.A.B.C.h.D.E.F.d.[.<.G.H.I.^.J.o ", "J.x v J K.>.'.3.L.i.M.y.N.O.P.Q.R.S.T.U.V.C.W.X.Y.t.Z.` ..`.c +", ".+++@+#+$+k.D.M.%+&+*+S.Q.=+-+;+>+,+'+)+!+P.~+z.{+]+j.F.}.^+/+=.", "~.(+_+:+h.<+[+T.Q.=+~+;+}+|+1+2+3+4+5+6+7+[+8+9+P.*+0+C.a+b+$+c+", "E.W.d+U.=+'+e+>+f+g+2+h+i+j+k+l+m+n+o+p+q+r+s+t+<+;+-+=+u+0+C.v+", "w+*+[+}+t+2+x+y+k+z+A+B+C+D+E+F+G+H+I+J+B+K+A+n+o+i+L+4+|+>+~+*+", "M+N+O+m+K+P+H+G+Q+R+S+T+U+V+W+X+Y+W+Z+`+U+T+ @.@+@F+D+C+@@z+j+x+", "J+G+Q+ @T+#@$@X+%@&@*@*@=@=@-@;@>@,@;@=@=@*@'@)@!@X+$@U+T+R++@E+", "~@{@]@^@A+B+/@H+G+Q+R+(@T+U+V+$@_@$@`+U+:@ @<@+@F+E+P+K+m+O+i+[@", "}@*+e+>+f+|@r+i+j+^@z+1@B+J+D+E+H+E+J+C+K+A+l+k+y+2@2+g+3@4@8+O.", "k.5@6@;+7@=+8+;+}+8@4+r+q+y+9@^@n+0@j+a@x+3+g+|+7+[+7@=+-+b@x.c@", "r.d@|.E.g.C.0+u+Q.P.'+e@7+f+t+s+2+1+t+3@>+f@=+S.=+e+B.g@v+k.h@!.", "w H.-.>.'.1.i@j@k@z.e+P.!+Q.*+,+;+e+=+Q.Q.u+[+d+l@5@E.m@s.n@o@p@", "q@r@I.m.-.!.,.s@2.D.h.C.t@e+=+Q.R.S.*+0+u@l@g.v.v@d.w@;.o@K x@{ ", "y@C f z@V A@-.` B@$+C@D@i.E@C.V.N.F@l@]+G@2._+}.#+7.H@W c N ] / ", "= ; / q@e I@F J /+J@[.'.m@Y.v.5@K@D.L.1.$+,.6.7.L@G M@z@/.N@> - ", "O@h - #.N@q a E +.J /+;.>.,.P@F.k._+d.(+!.Q@L@H.v I@R@S@, y@g * ", "| & < g T@o U@{ d @.c.J /+V@W@Z.}.X@` @+Y@m.Z@E a q ^ 8 _ A * z ", "Q % & `@g _.8 ^ ) N &.L =.J #7.n@@+H@A@.#c D { q@%.> _ = y } +#", "@ 1 % & * 6 _ > , q@/.^.U V W q.@#A@+.I.&.9.q T / 7 - 6 y } j ##", "3 m 5 % n * 6 - ( / T ) +$#c F K L U ^.0 ] C %#_.a.h [ } j Q @ ", "4 3 2 5 % & * = - &#%#C q@/.N &.w *#e J.p o o._ g $.[ } j k l + ", ". + @ 2 5 % =#* h g _ -#o T J.! N /.S@9 8 y@- 6 < [ } j 1 m 3 4 ", ";#>#+ @ Q +#% & y < g _ y@8 9 q@J.' , #._.- = `@[ } ,#1 2 3 4 . "}; debian/control0000644000000000000000000000265411524475557010617 0ustar Source: jackeq Section: sound Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Free Ekanayaka , Alessio Treglia Build-Depends: debhelper (>= 7.0.50~), autotools-dev (>= 20100122.1~), libjack-dev, libglib2.0-dev, libxml2-dev, libgtk2.0-dev, ladspa-sdk Standards-Version: 3.9.1 Vcs-Git: git://git.debian.org/pkg-multimedia/jackeq.git Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/jackeq.git Homepage: http://djcj.org/jackeq/ Package: jackeq Architecture: any Depends: ${shlibs:Depends}, swh-plugins (>= 0.4.3), ${misc:Depends} Recommends: jackd Description: routes and manipulates audio from/to multiple sources jackEQ is a tool for routing and manipulating audio from/to multiple input/output sources. It runs in the JACK Audio Connection Kit, and uses LADSPA for its backend DSP work, specifically the DJ EQ swh plugin created by Steve Harris, one of jackEQ's main authors. . jackEQ is intended to provide an accessible method for tweaking the treble, mid and bass of any JACK aware applications output. Designed specifically for live performance, it is modelled on various DJ mixing consoles which the main author has used. . jackEQ wll allow sound as rich and powerful as Jackie O, as street smart as Jackie Brown. jackEQ may be the first female entity in JACKs realm. Is jackEQ more than you can handle? debian/changelog0000644000000000000000000000663511524475633011064 0ustar jackeq (0.5.9-2) unstable; urgency=low * Upload to unstable. * Improve description. -- Alessio Treglia Wed, 09 Feb 2011 12:33:40 +0100 jackeq (0.5.9-1) experimental; urgency=low * New upstream release. * Set compression to bzip2. * Refresh patches. * Refresh and update 01-binutils_gold.patch, thanks to Fabrice Coutadeur for the patch (Closes: #604890). * Don't touch autom4te.cache, it's provided by upstream. * debian/control: - Requires debhelper >= 7.0.50~. - Recommends jackd. - Bump Standards. - Project moved to new home. * debian/patches/03-pathmax.patch: - Avoid unconditionalized use of PATH_MAX, attempt to fix build failure on hurd. * debian/watch: Point to new releases page. * debian/rules: - Don't touch .deps/*,*~,*.bak files as they're included in upstream's tarball. - Build with --as-needed flag. -- Alessio Treglia Thu, 25 Nov 2010 21:11:31 +0100 jackeq (0.4.1-4) unstable; urgency=low * Add Italian translation. -- Alessio Treglia Fri, 19 Nov 2010 09:59:51 +0100 jackeq (0.4.1-3) unstable; urgency=low * Add German translation provided by Chris Leick (Closes: #583923). * Adopt 'dh $@ --with foo'-style for compatibility with debhelper 8. -- Alessio Treglia Wed, 03 Nov 2010 00:26:33 +0100 jackeq (0.4.1-2) unstable; urgency=low * Update Maintainer's email name and address properly. * Add myself as uploader. * Bump Standards. * Add misc:Depends to Depends line. * Bump debhelper build-dep version. * Add Vcs-* tags. * Switch to debhelper 7. * Switch to 3.0 (quilt) format. * Drop dpatch support. * Add Homepage field. * Rely on autotools_dev DH add-on. * Add git-buildpackage configuration file. * Add .gitignore file. * Revert config.{guess,sub}, they will update at build time. * Add patch to fix build failure with binutils-gold (Closes: #554927). * Fix desktop file as per spec. * Remove unnecessary debian/dirs file. * Update debian/watch file. * s/Apps/Applications/ as per Debiam Menu sub-policy. * Update debian/copyright. -- Alessio Treglia Fri, 09 Jul 2010 17:53:34 +0200 jackeq (0.4.1-1) unstable; urgency=low [ Free Ekanayaka ] * New upstream release * Bug fix: "jackeq emits only static from left channel", thanks to Lee A. Azzarello (Closes: #356990). * Bug fix: "Spelling mistake in package description", thanks to Simon Waters (Closes: #363982). * New maintener Debian Multimedia Team * Fixed watch file * Fixed FSF address -- Free Ekanayaka Thu, 27 Apr 2006 09:25:06 +0200 jackeq (0.4.0-2) unstable; urgency=low * Fixed broken watch file * Build depends on libjack0.100.0-dev (closes: #317200) * Using thai-gold as menu icon, not ideal but better than nothing (closes: #299350) * Added .desktop file for GNOME menus -- Free Ekanayaka Wed, 20 Jul 2005 12:17:14 +0200 jackeq (0.4.0-1) unstable; urgency=low * New upstream release * First Debian upload (closes: #256980), sponsored by Cosimo Alfarano * Uncommented dh_installmenu debian/rules * Updated to Standards-Version 3.6.1.1 -- Free Ekanayaka Wed, 1 Sep 2004 13:05:41 +0200 jackeq (0.3.8-0test1) unstable; urgency=low * Initial Release. -- Free Ekanayaka Fri, 2 Jan 2004 15:17:39 +0100 debian/jackeq.desktop0000644000000000000000000000030211464065715012023 0ustar [Desktop Entry] Name=JackEQ Comment=routes and manipulates audio from/to multiple sources Exec=jackeq Terminal=false Icon=/usr/share/jackeq/thai-gold.png Type=Application Categories=AudioVideo; debian/install0000644000000000000000000000012511464065715010566 0ustar debian/jackeq.desktop usr/share/applications debian/jackeq.xpm usr/share/pixmaps debian/jackeq.10000644000000000000000000000270611464065715010524 0ustar ...\" $Header: /aolnet/dev/src/CVS/sgml/docbook-to-man/cmd/docbook-to-man.sh,v 1.1.1.1 1998/11/13 21:31:59 db3l Exp $ ...\" ...\" transcript compatibility for postscript use. ...\" ...\" synopsis: .P! ...\" .de P! .fl \!!1 setgray .fl \\&.\" .fl \!!0 setgray .fl \" force out current output buffer \!!save /psv exch def currentpoint translate 0 0 moveto \!!/showpage{}def .fl \" prolog .sy sed -e 's/^/!/' \\$1\" bring in postscript file \!!psv restore . .de pF .ie \\*(f1 .ds f1 \\n(.f .el .ie \\*(f2 .ds f2 \\n(.f .el .ie \\*(f3 .ds f3 \\n(.f .el .ie \\*(f4 .ds f4 \\n(.f .el .tm ? font overflow .ft \\$1 .. .de fP .ie !\\*(f4 \{\ . ft \\*(f4 . ds f4\" ' br \} .el .ie !\\*(f3 \{\ . ft \\*(f3 . ds f3\" ' br \} .el .ie !\\*(f2 \{\ . ft \\*(f2 . ds f2\" ' br \} .el .ie !\\*(f1 \{\ . ft \\*(f1 . ds f1\" ' br \} .el .tm ? font underflow .. .ds f1\" .ds f2\" .ds f3\" .ds f4\" '\" t .ta 8n 16n 24n 32n 40n 48n 56n 64n 72n .TH "DeMuDi undocumented package" "1" .SH "NAME" jackeq \(em program included in the DeMuDi distribution .SH "DESCRIPTION" .PP This program was packaged by the AGNULA team for the DeMuDi project (http://www.agnula.org). .PP A manual page for this application has not been provided yet. .SH "SEE ALSO" .PP info (1), whatis (1), apropos (1), dpkg (8), locate (1), find (1), updatedb (1), undocumented (2), man (7), missing (7) ...\" created by instant / docbook-to-man, Thu 04 Dec 2003, 08:07 debian/gbp.conf0000644000000000000000000000010311473503120010573 0ustar [DEFAULT] pristine-tar = True sign-tags = True compression = bzip2 debian/copyright0000644000000000000000000000204111464065715011127 0ustar This package was debianized by Free Ekanayaka on Fri, 2 Jan 2004 15:17:39 +0100. It was downloaded from https://sourceforge.net/projects/jackeq/files/ Upstream Author: Steve Harris, Patrick Shirkey Copyright: 2003 - 2004 S. Harris, P. Shirkey 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; version 2 dated June, 1991. 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, 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'. debian/source/0000755000000000000000000000000011471425322010467 5ustar debian/source/format0000644000000000000000000000001411464065715011705 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000010511473502751010220 0ustar version=3 http://djcj.org/jackeq/code/ \ jackEQ-([\d\.]+)\.tar\.bz2 debian/menu0000644000000000000000000000022011464065715010060 0ustar ?package(jackeq):needs="X11"\ section="Applications/Sound"\ title="jackeq"\ command="/usr/bin/jackeq"\ icon="/usr/share/pixmaps/jackeq.xpm" debian/manpages0000644000000000000000000000002011464065715010705 0ustar debian/jackeq.1