--- nicotine-1.0.8rc1.orig/nicotine +++ nicotine-1.0.8rc1/nicotine @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#! /usr/bin/python # Copyright (c) 2003-2004 Hyriand. All rights reserved. # # Based on code from PySoulSeek, original copyright note: --- nicotine-1.0.8rc1.orig/files/nicotine.desktop +++ nicotine-1.0.8rc1/files/nicotine.desktop @@ -1,8 +1,9 @@ [Desktop Entry] Encoding=UTF-8 Name=Nicotine -Comment=Soulseek Filesharing Client +Comment=SoulSeek filesharing client Exec=nicotine +Icon=nicotine_clear.png Terminal=false Type=Application Categories=Application;Network; --- nicotine-1.0.8rc1.orig/nicotine-import-winconfig +++ nicotine-1.0.8rc1/nicotine-import-winconfig @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Import the windows slsk config files in Nicotine. # Geert Kloosterman --- nicotine-1.0.8rc1.orig/pynicotine/config.py +++ nicotine-1.0.8rc1/pynicotine/config.py @@ -186,7 +186,7 @@ self.sections["transfers"]["fileindex"] = fileindex self.sections["transfers"]["sharedmtimes"] = sharedmtimes - if self.sections["server"]["server"][0] == "mail.slsknet.org": + if self.sections["server"]["server"][0] in [ "mail.slsknet.org", "mail.slsk.org" ]: self.sections["server"]["server"] = ('server.slsknet.org', 2240) self.config_lock.release() --- nicotine-1.0.8rc1.orig/pynicotine/gtkgui/settingswindow.py +++ nicotine-1.0.8rc1/pynicotine/gtkgui/settingswindow.py @@ -13,7 +13,7 @@ class ServerFrame(settings_glade.ServerFrame): def __init__(self, encodings): settings_glade.ServerFrame.__init__(self, gtk.FALSE) - self.Server.set_popdown_strings(["server.slsknet.org:2240"]) + self.Server.set_popdown_strings(["server.slsknet.org:2240", "server.slsk.org:2240"]) self.Encoding.set_popdown_strings(encodings) def SetSettings(self, config): @@ -21,7 +21,7 @@ if server["server"] is not None: self.Server.entry.set_text("%s:%i" % (server["server"][0], server["server"][1])) else: - self.Server.entry.set_text("mail.slsk.org:2240") + self.Server.entry.set_text("server.slsknet.org:2240") if server["login"] is not None: self.Login.set_text(server["login"]) if server["passw"] is not None: --- nicotine-1.0.8rc1.orig/pynicotine/gtkgui/dirchooser.py +++ nicotine-1.0.8rc1/pynicotine/gtkgui/dirchooser.py @@ -244,10 +244,15 @@ self.select_path(path) def ChooseDir(parent = None, initialdir = "~"): - dlg = DirChooser(parent = parent, initialdir = initialdir) + dir=initialdir+'/' + if(dir=='/'): + dir = "~/" + dlg = gtk.FileSelection(title = 'Select directory...') + dlg.file_list.set_sensitive(0) + dlg.set_filename(dir) response = dlg.run() if response == gtk.RESPONSE_OK: - res = dlg.get_path() + res = dlg.get_filename() else: res = None dlg.destroy() @@ -255,4 +260,3 @@ if __name__ == "__main__": print ChooseDir() - \ No newline at end of file --- nicotine-1.0.8rc1.orig/debian/docs +++ nicotine-1.0.8rc1/debian/docs @@ -0,0 +1,5 @@ +README +TODO +KNOWN_BUGS +MAINTAINERS +TRANSLATORS --- nicotine-1.0.8rc1.orig/debian/menu +++ nicotine-1.0.8rc1/debian/menu @@ -0,0 +1,5 @@ +?package(nicotine): needs="X11" \ + section="Apps/Net" \ + title="Nicotine" \ + command="/usr/bin/nicotine" \ + icon="/usr/share/pixmaps/nicotine.xpm" --- nicotine-1.0.8rc1.orig/debian/control +++ nicotine-1.0.8rc1/debian/control @@ -0,0 +1,22 @@ +Source: nicotine +Section: net +Priority: optional +Maintainer: Josselin Mouette +Build-Depends-Indep: python (>= 2.4), gettext +Build-Depends: debhelper (>= 4.1.60) +Standards-Version: 3.6.1 + +Package: nicotine +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-gtk2 (>= 1.99.17-6) +Recommends: python-pyvorbis, python-geoip +Suggests: python-psyco, python-gnome2 +Description: graphical client for the SoulSeek peer-to-peer system + Nicotine is a client for SoulSeek, a light and efficient file sharing + system, written in Python and using the GTK2 toolkit, based on the + PySoulSeek project. + . + It features uploading, downloading, searching and chatting, with + strict bandwidth control, and tries to look like PySoulSeek. + . + URL: http://nicotine.thegraveyard.org/ --- nicotine-1.0.8rc1.orig/debian/changelog +++ nicotine-1.0.8rc1/debian/changelog @@ -0,0 +1,98 @@ +nicotine (1.0.8rc1-1.1) hoary; urgency=low + + * added python2.4 dependency (nmu) + + -- Oliver Grawert (ogra) Sat, 15 Jan 2005 16:05:15 +0100 + +nicotine (1.0.8rc1-1) unstable; urgency=high + + * New upstream release. + * High urgency, as it fixes 2 protocol bugs. + + -- Josselin Mouette Tue, 14 Sep 2004 10:36:28 +0200 + +nicotine (1.0.7-1) unstable; urgency=low + + * New upstream release (closes: #230919). + * Now suggests python-gnome2. + + -- Josselin Mouette Wed, 4 Feb 2004 12:44:07 +0100 + +nicotine (1.0.6+7rc2-1) unstable; urgency=low + + * New upstream release + + -- Josselin Mouette Sat, 17 Jan 2004 14:28:50 +0100 + +nicotine (1.0.6-1) unstable; urgency=medium + + * New upstream release (closes: #222646). + + Should fix UI freezes (closes: #218719). + + Setting urgency to medium as the protocol for searches has + changed. Again. + * Suggest again python-psyco (it is enabled by default). + * Default server is now sk2.slsknet.org. + * Now ship upstream icons and .desktop file. + + -- Josselin Mouette Sat, 6 Dec 2003 15:00:12 +0100 + +nicotine (1.0.5-1) unstable; urgency=high + + * New upstream release (closes: #219538). + * Critical fix: server protocol change. + + -- Josselin Mouette Fri, 7 Nov 2003 09:35:51 +0100 + +nicotine (1.0.4.1-1) unstable; urgency=low + + * New upstream release (closes: #217920). + * Include newer fr.po from Julien Wajsberg . + + -- Josselin Mouette Sun, 2 Nov 2003 16:51:43 +0100 + +nicotine (1.0.4-2) unstable; urgency=low + + * Now use mail.slsknet.org as default server. + + -- Josselin Mouette Thu, 25 Sep 2003 10:46:59 +0200 + +nicotine (1.0.4-1) unstable; urgency=low + + * New upstream release. + * Build and ship .mo files. + + -- Josselin Mouette Thu, 18 Sep 2003 22:48:57 +0200 + +nicotine (1.0.3.0-1) unstable; urgency=low + + * Remove non-free material (icons) from upstream tarball. We are now + using PNG icons from the gossip package. + + -- Josselin Mouette Mon, 8 Sep 2003 14:05:21 +0200 + +nicotine (1.0.3-2) unstable; urgency=low + + * pynicotine/gtkgui/dirchooser.py: use a decent directory chooser + (closes: #208725). + + -- Josselin Mouette Sat, 6 Sep 2003 15:50:08 +0200 + +nicotine (1.0.3-1) unstable; urgency=low + + * New upstream release. + * Disabled psyco stuff, as asked by upstream author. + + -- Josselin Mouette Wed, 3 Sep 2003 17:58:31 +0200 + +nicotine (1.0.2-2) unstable; urgency=low + + * Support for python-geoip. + + -- Josselin Mouette Mon, 25 Aug 2003 21:03:54 +0200 + +nicotine (1.0.2-1) unstable; urgency=low + + * Initial release (closes: #206544). + * Mostly re-use pyslsk packaging. + + -- Josselin Mouette Mon, 25 Aug 2003 14:10:29 +0200 --- nicotine-1.0.8rc1.orig/debian/links +++ nicotine-1.0.8rc1/debian/links @@ -0,0 +1 @@ +/usr/share/pixmaps/nicotine_clear.png /usr/share/pixmaps/nicotine.png --- nicotine-1.0.8rc1.orig/debian/rules +++ nicotine-1.0.8rc1/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PO_FILES = $(wildcard languages/*/*.po) +MO_FILES = $(PO_FILES:.po=.mo) + +DEST=$(CURDIR)/debian/nicotine +DESTLOCALE=$(DEST)/usr/share/locale + +build: $(MO_FILES) + +%.mo: %.po + msgfmt -o $@ $< + +clean: + dh_testdir + dh_testroot + find languages -name \*.mo | xargs rm -f + dh_clean debian/dirs + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_install + cd languages && \ + for i in */; do \ + mkdir -p $(DESTLOCALE)/$${i}LC_MESSAGES/; \ + cp $${i}*.mo $(DESTLOCALE)/$${i}LC_MESSAGES/; \ + done + +# Build architecture-dependent files here. +binary-arch: +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installmenu + dh_installman + dh_installchangelogs CHANGELOG + dh_link + dh_strip + dh_compress + dh_fixperms + dh_python + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: clean binary-indep binary-arch binary install build --- nicotine-1.0.8rc1.orig/debian/nicotine-import-winconfig.1 +++ nicotine-1.0.8rc1/debian/nicotine-import-winconfig.1 @@ -0,0 +1,81 @@ +.\" Hey, EMACS: -*- nroff -*- +.TH NICOTINE 1 "August 25, 2003" +.\" Please adjust this date whenever revising the manpage. +.SH NAME +nicotine-import-winconfig \- import configuration from the Windows soulseek client +.SH SYNOPSIS +.B nicotine-import-winconfig +.RB [\| OPTIONS \|] +.I old-config-file +.SH DESCRIPTION +This manual page documents briefly the +.B nicotine-import-winconfig +command. +This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +\fBnicotine-import-winconfig\fP is a program to import your queue, user list, +password information, auto-joined chatrooms, banlist, and user +information from the Windows SoulSeek configuration. +.SH USAGE +A typical invocation would be : +.PP +\fBnicotine-import-winconfig\fP "/mnt/win9x/Program Files/SoulSeek" +.PP +The program should be run when nicotine is \fInot\fP running. It +will add the information (download queue, userlist, password info, +etc.) to the existing configuration or write a new configuration from +scratch when no configuration exists. +.SH FILES +.TP +.IR $HOME /.nicotine/config +The per-user configuration file for \fBnicotine\fP(1) will be overwritten. +.PP +You might want to back up the file first, but it should not be +necessary. A different config file can be chosen using the \fI--config\fP +flag. +.TP +\fIconfigfile\fP-userinfo.\fIext\fP +In case there's an image included in the Windows SoulSeek userinfo, the +image will be extracted and written to that file, where \fIconfigfile\fP +is the path to your nicotine configuration file, and \fIext\fP is the +appropriate file extension for the image type. +.SH OPTIONS +When you don't want to import all configuration options, you can choose +what to import using command line flags. +.TP +\fB-c\fP \fIfile\fP | \fB--config=\fP\fIfile\fP +Use a non-default nicotine configuration file to write to. +.TP +\fB-q\fP | \fB--queue\fP +Import the queue. +.TP +\fB-u\fP | \fB--userlist\fP +Import the userlist. +.TP +\fB-l\fP | \fB--login\fP +Import the login information. +.TP +\fB-C\fP | \fB--chatrooms\fP +Import the list of autojoined chatrooms. +.TP +\fB-b\fP | \fB--banned\fP +Import the list of banned users. +.TP +\fB-i\fP | \fB--userinfo\fP +Import the user information and the image. +.TP +\fB-h\fP | \fB--help\fP +Print the summary of command line options and exit. +.SH TIPS +It is possible to share the download directory between platforms. +Nicotine can even continue downloads that started using the Windows client. +.PP +Of course, the download directories should be the same for nicotine +and Windows, e.g. if your Windows sharing directory is \fIF:\\slsk_in\fP +and your F drive is mounted on \fI/mnt/media\fP, then you must set your +download directory to \fI/mnt/media/slsk_in\fP. +.SH SEE ALSO +.BR nicotine (1). +.SH AUTHOR +Geert Kloosterman , 2003. --- nicotine-1.0.8rc1.orig/debian/nicotine.xpm +++ nicotine-1.0.8rc1/debian/nicotine.xpm @@ -0,0 +1,368 @@ +/* XPM */ +static char * nicotine_xpm[] = { +"32 32 333 2", +" c None", +". c #807E98", +"+ c #706F8B", +"@ c #71708C", +"# c #6D6D8A", +"$ c #6D6D89", +"% c #70708C", +"& c #72718D", +"* c #73738E", +"= c #676684", +"- c #797892", +"; c #EAEAEE", +"> c #F3F3F5", +", c #E4E4EA", +"' c #73738F", +") c #7B7A94", +"! c #CDCDD7", +"~ c #F2F2F5", +"{ c #F2F2F4", +"] c #D7D7DF", +"^ c #9F9FB2", +"/ c #787792", +"( c #CBCBD6", +"_ c #787791", +": c #F6F6F8", +"< c #FFFFFF", +"[ c #FEFEFE", +"} c #BEBECB", +"| c #7E7D97", +"1 c #FDFDFE", +"2 c #D9D9E0", +"3 c #767691", +"4 c #908FA6", +"5 c #797993", +"6 c #E0E0E6", +"7 c #7A7993", +"8 c #82819A", +"9 c #F8F8FA", +"0 c #A7A6B8", +"a c #9C9CAF", +"b c #D6D6DE", +"c c #F0F0F2", +"d c #7F7F98", +"e c #72728E", +"f c #DCDCE3", +"g c #FEFEFF", +"h c #F4F4F6", +"i c #797893", +"j c #C8C7D2", +"k c #787793", +"l c #EBEBEE", +"m c #6F6E8B", +"n c #BDBDCA", +"o c #FCFCFD", +"p c #8F8FA5", +"q c #A0A0B2", +"r c #AFAFBF", +"s c #7E7E97", +"t c #F9F9FA", +"u c #81819A", +"v c #E9E9EE", +"w c #75748F", +"x c #C3C3CF", +"y c #B5B5C3", +"z c #85849D", +"A c #EBEBEF", +"B c #DEDDE4", +"C c #FCFCFC", +"D c #C5C5D0", +"E c #7D7D97", +"F c #7A7A94", +"G c #F6F6F7", +"H c #EFEFF2", +"I c #9A9AAE", +"J c #FDFDFD", +"K c #A6A6B8", +"L c #A09FB2", +"M c #BFBFCB", +"N c #73728E", +"O c #7D7C96", +"P c #BDBCC9", +"Q c #AAA9BA", +"R c #808099", +"S c #C1C1CD", +"T c #7C7C96", +"U c #FAFAFB", +"V c #83829A", +"W c #74748F", +"X c #B7B7C5", +"Y c #575677", +"Z c #D8D8DF", +"` c #83839B", +" . c #FAFAFA", +".. c #CECED7", +"+. c #6F6F8B", +"@. c #777792", +"#. c #87869E", +"$. c #B6B6C4", +"%. c #EDEDF0", +"&. c #807F98", +"*. c #E4E4E9", +"=. c #F1F1F4", +"-. c #6E6E8A", +";. c #645148", +">. c #CE9F2F", +",. c #D8A72D", +"'. c #AE8938", +"). c #6F5C44", +"!. c #6B5844", +"~. c #CDA030", +"{. c #D3A430", +"]. c #766042", +"^. c #6A5948", +"/. c #D6A630", +"(. c #CC9C2C", +"_. c #D5A52F", +":. c #D6A62F", +"<. c #C59A31", +"[. c #645344", +"}. c #6D5945", +"|. c #B48D37", +"1. c #D7A730", +"2. c #CB9E30", +"3. c #615146", +"4. c #634E3F", +"5. c #C89315", +"6. c #D49D14", +"7. c #A87E23", +"8. c #6C5639", +"9. c #695339", +"0. c #C99614", +"a. c #CD9814", +"b. c #735A36", +"c. c #6F593A", +"d. c #9A7528", +"e. c #D19B18", +"f. c #D49E1A", +"g. c #D8A21D", +"h. c #D19B14", +"i. c #C3921C", +"j. c #64503C", +"k. c #6A543A", +"l. c #B38726", +"m. c #D7A11C", +"n. c #C69216", +"o. c #614F3F", +"p. c #645040", +"q. c #C99416", +"r. c #DAA31A", +"s. c #AB8125", +"t. c #6D5738", +"u. c #69543A", +"v. c #C89510", +"w. c #D09D16", +"x. c #755E39", +"y. c #68523C", +"z. c #C4921A", +"A. c #D29C18", +"B. c #D39D18", +"C. c #C1911B", +"D. c #63503C", +"E. c #6A5439", +"F. c #B18522", +"G. c #D29C17", +"H. c #C69317", +"I. c #604E3E", +"J. c #614D3E", +"K. c #C28F17", +"L. c #D39C14", +"M. c #B38720", +"N. c #69543D", +"O. c #D09C15", +"P. c #725A35", +"Q. c #755D41", +"R. c #9D782C", +"S. c #DAA420", +"T. c #D19B16", +"U. c #D29C16", +"V. c #BF8F19", +"W. c #624F3B", +"X. c #69543E", +"Y. c #C79621", +"Z. c #D09A15", +"`. c #C69318", +" + c #5F4D3D", +".+ c #6E5637", +"++ c #A27924", +"@+ c #D29C15", +"#+ c #CA9617", +"$+ c #705A3F", +"%+ c #6B563C", +"&+ c #CB9717", +"*+ c #CD9816", +"=+ c #725937", +"-+ c #775E3A", +";+ c #DEA927", +">+ c #D9A31E", +",+ c #D39D16", +"'+ c #C08F19", +")+ c #735C3C", +"!+ c #DCA727", +"~+ c #AB8121", +"{+ c #63503B", +"]+ c #83642F", +"^+ c #CF9813", +"/+ c #8D6D2F", +"(+ c #6A543C", +"_+ c #CA951C", +":+ c #D19C1F", +"<+ c #785F3D", +"[+ c #624F3D", +"}+ c #B2851E", +"|+ c #D49E19", +"1+ c #D59F18", +"2+ c #6B553B", +"3+ c #9D7728", +"4+ c #D09A16", +"5+ c #D59F1B", +"6+ c #906E2D", +"7+ c #68533A", +"8+ c #C29019", +"9+ c #CF9A18", +"0+ c #B78A20", +"a+ c #68533B", +"b+ c #C79218", +"c+ c #CC971A", +"d+ c #735B39", +"e+ c #765D36", +"f+ c #C8961B", +"g+ c #D09E21", +"h+ c #B98B1E", +"i+ c #634F3D", +"j+ c #6B563D", +"k+ c #CA9414", +"l+ c #C2921D", +"m+ c #68543E", +"n+ c #785E33", +"o+ c #85672D", +"p+ c #CD9B1A", +"q+ c #E0AF2E", +"r+ c #9A7A36", +"s+ c #67533B", +"t+ c #66533E", +"u+ c #725934", +"v+ c #735A34", +"w+ c #624E3B", +"x+ c #6D5638", +"y+ c #6F593B", +"z+ c #7C6543", +"A+ c #715A3F", +"B+ c #6C543A", +"C+ c #62503C", +"D+ c #A07C28", +"E+ c #D29A11", +"F+ c #97752E", +"G+ c #7A6445", +"H+ c #B78A22", +"I+ c #D5A01E", +"J+ c #D4A020", +"K+ c #93702C", +"L+ c #67523B", +"M+ c #64523F", +"N+ c #9E7929", +"O+ c #CE9C18", +"P+ c #D29C12", +"Q+ c #B6891B", +"R+ c #614F3C", +"S+ c #B8891E", +"T+ c #D19D1C", +"U+ c #9D7829", +"V+ c #7D6131", +"W+ c #7D6132", +"X+ c #7C6030", +"Y+ c #7D6231", +"Z+ c #826637", +"`+ c #826636", +" @ c #7D6232", +".@ c #806534", +"+@ c #7D6130", +"@@ c #83662F", +"#@ c #BD922C", +"$@ c #D7A31D", +"%@ c #D19C15", +"&@ c #C49216", +"*@ c #AF821F", +"=@ c #D8A422", +"-@ c #D09B16", +";@ c #CE9C17", +">@ c #D19D18", +",@ c #D4A01A", +"'@ c #D19A13", +")@ c #CE9A17", +"!@ c #D09C18", +"~@ c #D6A01A", +"{@ c #D19A12", +"]@ c #D09B13", +"^@ c #D09C16", +"/@ c #D39F18", +"(@ c #D49E17", +"_@ c #D19A14", +":@ c #B4861D", +"<@ c #64513B", +"[@ c #7B6035", +"}@ c #66513B", +"|@ c #795E35", +"1@ c #A57B22", +"2@ c #C69319", +"3@ c #C4951A", +"4@ c #C6961C", +"5@ c #C8971B", +"6@ c #CA9416", +"7@ c #CE9D28", +"8@ c #C6931E", +"9@ c #C9931A", +"0@ c #C99216", +"a@ c #CA9619", +"b@ c #CA9A20", +"c@ c #C8971A", +"d@ c #B1851C", +"e@ c #87672E", +"f@ c #65503B", +"g@ c #6B553C", +"h@ c #614E3D", +"i@ c #635141", +"j@ c #665444", +"k@ c #624E3C", +"l@ c #645244", +"m@ c #635041", +"n@ c #624D3D", +"o@ c #614D3C", +"p@ c #614D3D", +"q@ c #604E3C", +"r@ c #634F3C", +" ", +" ", +" ", +" ", +" ", +" . + @ # $ % + + + & ", +" * = - ; > , ' ) ! > ~ { { ] ^ ' ", +" / ( _ ) : < [ } | ) ] < < [ [ < 1 2 3 4 ", +" 5 6 : 7 ) : < < : 8 ) ] < 9 0 a b 1 < c d ", +" e f g h i ) : < < < j k ) ] < l m e n o < f ' ", +" p q [ o r s ) : < < < t u ) ] < v & w x < < y z ", +" 5 A < B * ) : < 9 C < D E 7 ] < v & F G < H / ", +" I J [ K ) : C L M [ G d N ] < v & O P [ [ Q ", +" R S < : T ) : U V W c < X Y Z < v & ` .< ..' ", +" +.l < ] @. ) : U #.T $.< %.&.*.< v & 3 ; < =.-. ", +" ;.>.,.'.). !.~.{.]. ^.~./.(._.:.<.[. }.|.1.2.3. ", +" 4.5.6.7.8. 9.0.a.b. c.d.e.f.g.h.i.j. k.l.m.n.o. ", +" p.q.r.s.t. u.v.w.x. y.z.A.B.h.C.D. E.F.G.H.I. ", +" J.K.L.M.N. u.v.O.P. Q.R.S.T.U.V.W. X.Y.Z.`. + ", +" .+++@+#+$+ %+&+*+=+ -+;+>+,+'+W. )+!+m.~+{+ ", +" ]+^+B./+ (+_+:+<+ [+}+|+1+'+W. 2+3+4+5+6+ ", +" 7+8+9+0+[+ a+b+c+d+ e+f+g+h+i+ j+k+G.l+m+ ", +" n+o+p+q+r+s+ t+u+v+w+ x+y+z+A+B+ C+D+E+G.F+G+ ", +" [+H+I+J+K+L+ M+N+O+P+Q+R+ ", +" s+S+4+T+U+V+W+X+Y+Z+`+ @V+Y+.@Y++@Y+@@#@$@%@&@x+ ", +" L+*@=@f.-@;@>@,@U.U.'@)@!@~@{@]@^@/@(@_@:@<@[@ ", +" }@|@1@2@3@4@5@n.q.6@7@8@9@0@a@b@c@d@e@f@ ", +" g@h@i@j@h@h@k@k@l@m@n@o@p@o.q@r@ ", +" ", +" ", +" ", +" "}; --- nicotine-1.0.8rc1.orig/debian/manpages +++ nicotine-1.0.8rc1/debian/manpages @@ -0,0 +1,2 @@ +debian/nicotine.1 +debian/nicotine-import-winconfig.1 --- nicotine-1.0.8rc1.orig/debian/compat +++ nicotine-1.0.8rc1/debian/compat @@ -0,0 +1 @@ +4 --- nicotine-1.0.8rc1.orig/debian/README.Debian +++ nicotine-1.0.8rc1/debian/README.Debian @@ -0,0 +1,11 @@ +nicotine for Debian +------------------- + +A script to convert your Windows Soulseek configuration is available, +and is named nicotine-import-winconfig. + +The package differs from upstream in using the standard GTK+ directory +chooser. It also includes a different icon set, as the standard one is +built from the Windows client and is thus non-free. + + -- Josselin Mouette , Mon, 8 Sep 2003 14:12:30 +0200 --- nicotine-1.0.8rc1.orig/debian/nicotine.1 +++ nicotine-1.0.8rc1/debian/nicotine.1 @@ -0,0 +1,23 @@ +.\" Hey, EMACS: -*- nroff -*- +.TH NICOTINE 1 "August 25, 2003" +.\" Please adjust this date whenever revising the manpage. +.SH NAME +nicotine \- client for the SoulSeek peer-to-peer sharing system +.SH DESCRIPTION +This manual page documents briefly the +.B nicotine +command. +This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +\fBnicotine\fP is a graphical client for the \fISoulSeek\fP filesharing +network. It is designed to be fairly simple to use; right-clicking +on an item in any list gives you the menu of what's available. +.PP +To search for files, just enter your search string into the input box in +the search tab. +.SH SEE ALSO +.IR /usr/share/doc/nicotine/ . +.SH AUTHOR +This manual page was written by Josselin Mouette , +for the Debian GNU/Linux system (but may be used by others). --- nicotine-1.0.8rc1.orig/debian/copyright +++ nicotine-1.0.8rc1/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Josselin Mouette on +Mon, 25 Aug 2003 14:22:11 +0200. + +It was downloaded from http://nicotine.thegraveyard.org/ + +Upstream Author: Hyriand + +Copyright: + + 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., 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- nicotine-1.0.8rc1.orig/debian/install +++ nicotine-1.0.8rc1/debian/install @@ -0,0 +1,4 @@ +debian/nicotine.xpm files/*.png /usr/share/pixmaps +files/*.desktop /usr/share/applications +nicotine nicotine-import-winconfig /usr/bin +pynicotine /usr/lib/site-python