debian/0000775000000000000000000000000012053173705007173 5ustar debian/control0000664000000000000000000000250411655034732010602 0ustar Source: gnumail Section: gnustep Priority: optional Maintainer: Debian GNUstep maintainers Uploaders: Yavor Doganov Build-Depends: debhelper (>= 8), libgnustep-gui-dev, libpantomime1.2-dev, libaddresses-dev, libaddressview-dev Standards-Version: 3.9.2 Homepage: http://collaboration-world.com/gnumail Vcs-Git: git://git.debian.org/pkg-gnustep/gnumail.git Vcs-Browser: http://git.debian.org/?p=pkg-gnustep/gnumail.git Package: gnumail.app Architecture: any Depends: addressmanager.app, ${shlibs:Depends}, ${misc:Depends} Suggests: gnupg, steptalk Provides: mail-reader, imap-client Description: Mail client for GNUstep GNUMail is a clone of NeXT/Apple's Mail.app application. It uses the GNUstep development framework (or Apple Cocoa, which is based on the OpenStep specification provided by NeXT, Inc.). Package: gnumail.app-dbg Architecture: any Section: debug Priority: extra Depends: gnumail.app (= ${binary:Version}), ${misc:Depends} Description: Mail client for GNUstep (debugging symbols) GNUMail is a clone of NeXT/Apple's Mail.app application. It uses the GNUstep development framework (or Apple Cocoa, which is based on the OpenStep specification provided by NeXT, Inc.). . This package contains the debugging symbols. debian/patches/0000775000000000000000000000000011655173255010631 5ustar debian/patches/series0000664000000000000000000000007211655044022012032 0ustar link-libs.patch mail-window-crash.patch pgp-version.patch debian/patches/pgp-version.patch0000664000000000000000000000265111651052075014117 0ustar 2008-03-13 Hubert Chathi * Rename the PGP bundle -version method to avoid conflict. --- gnumail-1.2.0~pre3+snap20071004.orig/Bundles/PGP/PGPController.h +++ gnumail-1.2.0~pre3+snap20071004/Bundles/PGP/PGPController.h @@ -68,6 +68,7 @@ // // other methods // +- (NSString *) gnumailBundleVersion; - (void) updateAndRestartTimer; @end --- gnumail-1.2.0~pre3+snap20071004.orig/Bundles/PGP/PGPController.m +++ gnumail-1.2.0~pre3+snap20071004/Bundles/PGP/PGPController.m @@ -274,11 +274,16 @@ // // // -- (NSString *) version +- (NSString *) gnumailBundleVersion { return @"v0.9.1"; } +- (NSString *) version +{ + return [self gnumailBundleVersion]; +} + // // --- gnumail-1.2.0~pre3+snap20071004.orig/Bundles/PGP/PGPViewController.m +++ gnumail-1.2.0~pre3+snap20071004/Bundles/PGP/PGPViewController.m @@ -70,7 +70,7 @@ // We set the version label value [versionLabel setStringValue: [NSString stringWithFormat: _(@"Version: %@"), - [[PGPController singleInstance] version]]]; + [[PGPController singleInstance] gnumailBundleVersion]]]; return self; } --- gnumail-1.2.0~pre3+snap20071004.orig/GNUmakefile +++ gnumail-1.2.0~pre3+snap20071004/GNUmakefile @@ -33,7 +33,10 @@ Bundles/MIME \ Bundles/Receiving \ Bundles/Sending \ - Bundles/Viewing + Bundles/Viewing \ + Bundles/PGP \ + Bundles/Emoticon \ + Bundles/Face APP_NAME = GNUMail GNUMail_OBJC_FILES = GNUMail_main.m debian/patches/mail-window-crash.patch0000664000000000000000000000130111651053242015157 0ustar 2011-10-23 Yavor Doganov * MailWindowController.m ([MailWindowController(Private) _showMessage:]): Avoid checking the window height. --- gnumail.orig/Framework/GNUMail/MailWindowController.m +++ gnumail/Framework/GNUMail/MailWindowController.m @@ -3212,14 +3212,6 @@ // - (void) _showMessage: (id) sender { - // Don't render the message if user won't be able to see it. - // Under GNUstep, the value never gets below 3, that's why - // we picked the value 4. - if ([textScrollView frame].size.height < 4) - { - return; - } - [Utilities showMessage: [self selectedMessage] target: [self textView] showAllHeaders: [self showAllHeaders]]; debian/patches/link-libs.patch0000664000000000000000000000116011655173255013534 0ustar 2011-11-05 Yavor Doganov * Framework/GNUMail/GNUmakefile (GNUMail_GUI_LIBS): Replace with the correct variable... (LIBRARIES_DEPEND_UPON): ...and add all missing libs. --- gnumail.orig/Framework/GNUMail/GNUmakefile +++ gnumail/Framework/GNUMail/GNUmakefile @@ -100,7 +100,8 @@ WelcomePanel.m GNUMail_LIB_DIRS = -L../$(GNUSTEP_LIBRARIES_ROOT) -GNUMail_GUI_LIBS = -lPantomime -lAddresses -lAddressView +LIBRARIES_DEPEND_UPON = $(OBJC_LIBS) $(FND_LIBS) $(GUI_LIBS) -lPantomime \ + -lAddresses -lAddressView -lm ADDITIONAL_INCLUDE_DIRS = -I. # We want to get all the warnings... debian/compat0000664000000000000000000000000211651061045010365 0ustar 8 debian/changelog0000664000000000000000000002424312053173705011052 0ustar gnumail (1.2.0~pre3+snap20071004-5build1) raring; urgency=low * Rebuild for gnustep-gui 0.22 transition. -- Benjamin Drung Wed, 21 Nov 2012 16:48:21 +0100 gnumail (1.2.0~pre3+snap20071004-5) unstable; urgency=low * debian/patches/pgp-version.patch: Move local modifications here. * debian/patches/mail-window-crash: New, fixes a crash when displaying the main window (Closes: #645936). * debian/patches/link-libs.patch: New, link against all required libraries. * debian/patches/series: New file. * debian/control: Wrap all fields for diff-friendliness. (Uploaders): Add myself and remove Hubert as per his request. (Section): Change to `gnustep' and `debug' (for the -dbg package). (Build-Depends): Remove libssl-dev, the correct fix was made in pantomime. Drop cdbs and unnecessary version requirements. (Homepage, Vcs-Git, Vcs-Browser): New fields. (Suggests): Remove ancient pgp variants. (Conflicts, Replaces): Remove, not needed. (Provides): Add mail-reader and imap-client (Closes: #599072). (Description): Make the short description less pretentious; mention GNUstep. Don't praise the proprietary Mail.app program. (Standards-Version): Claim compliance with 3.9.2 as of this release. * debian/compat: Set to 8. * debian/rules: Rewrite to use plain debhelper. * debian/gnumail.app.overrides: Delete. * debian/source/format: New file, set to 3.0 (quilt). * debian/preinst: * debian/docs: * debian/GNUMail.desktop: New file. -- Yavor Doganov Sat, 05 Nov 2011 11:17:50 +0200 gnumail (1.2.0~pre3+snap20071004-4) unstable; urgency=low * debian/control: Build-depend: on libssl-dev. (closes: #471612) -- Hubert Chathi Wed, 19 Mar 2008 13:12:58 -0400 gnumail (1.2.0~pre3+snap20071004-3) unstable; urgency=low * Upload to unstable. * Bundles/PGP/PGPController.h, Bundles/PGP/PGPController.m, Bundles/PGP/PGPViewController.m: Rename bundle's -version method in PGP bundle to something that actually doesn't conflict. (closes: #457503) * debian/control (gnumail.app-dbg): Change priority to extra, to match overrides file. -- Hubert Chathi Thu, 13 Mar 2008 15:31:49 -0400 gnumail (1.2.0~pre3+snap20071004-2) experimental; urgency=low * debian/control: Make the mailing list the maintainer. * debian/control: Bump standards version to 3.7.3. (no other changes needed) * debian/control, debian/rules: add debugging package. * Bundles/PGP/PGPController.h, Bundles/PGP/PGPController.m, Bundles/PGP/PGPViewController.m: Rename bundle's -version method in PGP bundle, to avoid conflicting names. See if this helps #457503. * debian/rules: Remove call to strip. (closes: #437049) * debian/rules: Don't need to remove CVS directories any more. Upstream doesn't use CVS. * debian/control, debian/compat: Bump debhelper compatibility to 5. -- Hubert Chathi Fri, 01 Feb 2008 11:56:26 -0500 gnumail (1.2.0~pre3+snap20071004-1) unstable; urgency=low * New upstream snapshot. * Recommend steptalk. * Build against new GNUstep. * Update GNUstep paths environment variables in debian/rules. * Update menu entry. * Remove unneeded preinst and README.Debian file. -- Hubert Chathi Fri, 5 Oct 2007 12:11:07 -0400 gnumail (1.2.0~pre3-1~hc1) experimental; urgency=low * New upstream release. -- Hubert Chan Wed, 28 Feb 2007 07:22:58 -0500 gnumail (1.2.0~pre2+20070131-1~hc1) experimental; urgency=low * New upstream snapshot. -- Hubert Chan Wed, 31 Jan 2007 23:05:34 -0500 gnumail (1.2.0~pre2+20070129-1~hc1) experimental; urgency=low * New upstream snapshot. -- Hubert Chan Mon, 29 Jan 2007 14:24:21 -0500 gnumail (1.2.0~pre2+20070119+newcache-1~hc1) experimental; urgency=low * New upstream snapshot, plus new experimental caching code. * Update my maintainer address. -- Hubert Chan Fri, 19 Jan 2007 22:00:32 -0500 gnumail (1.2.0~pre2-1) unstable; urgency=low * New upstream release. * Add preinst script to move user-installed files in the Resources directory to /usr/share. (Closes: #364143) -- Hubert Chan Wed, 27 Sep 2006 14:48:48 -0400 gnumail (1.1.99+20060527-1) unstable; urgency=low * New upstream snapshot. * Recompile with new GNUstep libraries. * Use cdbs for build rules. * Bump standards version to 3.7.2. (no changes) * Fix GPL license header in copyright file. * Disable clock bundle since it doesn't work in GNUstep. -- Hubert Chan Wed, 30 Aug 2006 22:13:24 -0600 gnumail (1.1.99+20051227cvs-1) unstable; urgency=low * Upstream CVS checkout. - Upstream says that these bugs in BTS have already been fixed in CVS. (Closes: #293802, #294921, #325724, #296826) - Use thread arcs instead of threaded view. (Closes: #293802) - Fix composing message with UTF-8 subject. (Closes: #294921) * New co-maintainer. * Bump standards version to 3.6.2.1. * Recompile with new GNUstep libraries. (Closes: #350077) * Fix copyright file. -- Hubert Chan Sun, 16 Apr 2006 17:52:19 -0600 gnumail (1.1.99-1) experimental; urgency=low * New upstream version. * Upload in experimental. * Update manpage. * Update description. -- Eric Heintzmann Sun, 23 Jan 2005 16:57:32 +0100 gnumail (1.1.2-5) unstable; urgency=medium * Cleanup debina/rules. -- Matthias Klose Wed, 22 Dec 2004 11:02:05 +0100 gnumail (1.1.2-4) unstable; urgency=low * Rename gnumail binary package to gnumail.app. -- Eric Heintzmann Thu, 25 Nov 2004 19:03:22 +0100 gnumail (1.1.2-3) unstable; urgency=medium * Rebuild using latest pantomime, addresses and GNUstep Core packages. * Remove old wrapper script and provide new wrapper link. -- Eric Heintzmann Sun, 8 Aug 2004 22:49:30 +0200 gnumail (1.1.2-2) unstable; urgency=low * Rebuild using new addresses package. -- Matthias Klose Wed, 17 Mar 2004 07:41:02 +0100 gnumail (1.1.2-1) unstable; urgency=low * New upstream version (closes: #228759, #228189). * New maintainer. * Now Build-Depends on addresses-framework and addressview-framework. * Add a dependency to addressmanager. * Update debian/gnumail.sh wrapper script. * Update debian/menu file. * Add an icon in menu. -- Eric Heintzmann Tue, 10 Feb 2004 18:41:22 +0100 gnumail (1.1.1-1) unstable; urgency=low * New upstream version. * Add man page (closes: #163374). -- Matthias Klose Wed, 15 Oct 2003 21:11:58 +0200 gnumail (1.1.0-1) unstable; urgency=low * New upstream release. -- Matthias Klose Thu, 28 Aug 2003 22:26:20 +0200 gnumail (1.0.99-2) unstable; urgency=low * Recompile for new GNUstep directory layout. * Fix suggestion for gnupg (closes: #196896). -- Matthias Klose Wed, 30 Jul 2003 22:38:31 +0200 gnumail (1.0.99-1) unstable; urgency=low * New upstream release (2nd 1.1 prerelease). - Fixes hang at startup (closes: #163375). * Update Standards-Version to 3.5.10. -- Matthias Klose Thu, 29 May 2003 14:26:53 +0200 gnumail (1.0.98-1) unstable; urgency=low * New upstream version 1.1.0 pre1. -- Matthias Klose Sun, 26 Jan 2003 20:32:29 +0100 gnumail (1.0.3-3) unstable; urgency=medium * Find the PGP and Clock bundles in the System hierarchy. -- Matthias Klose Tue, 8 Oct 2002 23:57:31 +0200 gnumail (1.0.3-2) unstable; urgency=low * Search the PGP and Clock bundles in the System hierarchy. -- Matthias Klose Fri, 13 Sep 2002 20:38:38 +0200 gnumail (1.0.3-1) unstable; urgency=low * New upstream version. -- Matthias Klose Wed, 11 Sep 2002 22:21:14 +0200 gnumail (1.0.2-2) unstable; urgency=low * Install Clock and PGP bundles in GNUSTEP_SYSTEM_ROOT (closes: #155463). -- Matthias Klose Fri, 9 Aug 2002 08:42:51 +0200 gnumail (1.0.2-1) unstable; urgency=low * New upstream version. * Recompile should fix startup problems (closes: #143105, #145781). -- Matthias Klose Sat, 20 Jul 2002 16:48:45 +0200 gnumail (1.0.1-2) unstable; urgency=low * Build with gnustep-gui-0.7.7. -- Matthias Klose Sun, 12 May 2002 13:22:31 +0200 gnumail (1.0.1-1) unstable; urgency=low * New upstream releases. -- Matthias Klose Wed, 1 May 2002 15:01:24 +0200 gnumail (1.0.0-2) unstable; urgency=medium * Create ~/GNUstep/Library if it does not exist (closes: #141087). * gnustep-make problems fixed in earlier upload (closes: #138877). * Fix dangling symlinks (closes: #138083). -- Matthias Klose Sat, 6 Apr 2002 13:33:44 +0200 gnumail (1.0.0-1) unstable; urgency=medium * Upload with correct version number. -- Matthias Klose Thu, 28 Mar 2002 17:40:24 +0100 gnumail (0.9.94-0.1) unstable; urgency=medium * Non Maintainer Upload * New upstream release * Don't know why Matthias chose to use a versioning scheme different than upstream. In order not to harm his versioning scheme i just bumped up his version instead of using upstream's. -- Paul Seelig Mon, 25 Mar 2002 03:08:53 +0100 gnumail (0.9.93-1) unstable; urgency=low * New upstream release (1.0.0pre3). * Added a menu entry (Paul Seelig). Closes: #134686. -- Matthias Klose Mon, 4 Mar 2002 20:52:42 +0100 gnumail (0.9.92-2) unstable; urgency=low * Fix typo in start script. -- Matthias Klose Sat, 23 Feb 2002 15:54:19 +0100 gnumail (0.9.92-1) unstable; urgency=low * New upstream release (1.0.0pre2). * Adjust the package description. IMO it's worth describing the origin of a package. Closes: #130020. * README.Debian: explain how to start GNUMail.app. * Add menu file provided by Paul Seelig. -- Matthias Klose Sun, 3 Feb 2002 20:58:41 +0100 gnumail (0.9.91-1) unstable; urgency=low * Initial Release: GNUmail.app 1.0.0pre1. -- Matthias Klose Wed, 16 Jan 2002 22:51:03 +0100 debian/preinst0000664000000000000000000000077411655177415010623 0ustar #!/bin/sh # dpkg will not replace a real directory with a symlink. # FIXME: Remove during the wheezy+1 cycle. set -e set -u RESDIR=/usr/lib/GNUstep/ApplicationSupport/GNUMail case "$1" in install | upgrade) if [ -d $RESDIR/PGP.bundle/Resources ] \ && [ ! -L $RESDIR/PGP.bundle/Resources ]; then for d in $RESDIR/*; do rm -rf $d/Resources; done fi ;; abort-upgrade) ;; *) echo "preinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/source/0000775000000000000000000000000011655035112010467 5ustar debian/source/format0000664000000000000000000000001411655035112011675 0ustar 3.0 (quilt) debian/copyright0000664000000000000000000000416611650744726011146 0ustar This package was debianized by Matthias Klose on Mon, 14 Jan 2002 03:03:20 +0100. It was downloaded from http://www.collaboration-world.com/gnumail/ Copyright Holders: Ludovic Marcotte (main developer, ludovic@Sophos.ca) Jonathan B. Leffert (some parts) Vincent Ricard (some parts) Andrew Lindesay (icons) Francis Lachapelle (MacOS X NIBS) License: 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 St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/{Linux,Hurd}, the full text of the license can be found at /usr/share/common-licenses/GPL ----- Copyright 1992, 1993, 1994, 1997 Henry Spencer. All rights reserved. This software is not subject to any license of the American Telephone and Telegraph Company or of the Regents of the University of California. Permission is granted to anyone to use this software for any purpose on any computer system, and to alter it and redistribute it, subject to the following restrictions: 1. The author is not responsible for the consequences of use of this software, no matter how awful, even if they arise from flaws in it. 2. The origin of this software must not be misrepresented, either by explicit claim or by omission. Since few users ever read sources, credits must appear in the documentation. 3. Altered versions must be plainly marked as such, and must not be misrepresented as being the original software. Since few users ever read sources, credits must appear in the documentation. 4. This notice may not be removed or altered. debian/GNUMail.xpm0000664000000000000000000001256011650744726011172 0ustar /* XPM */ static char *GNUMail[]={ "32 32 204 2", "Qt c None", ".T c #1d1515", ".i c #350b0a", ".j c #3a0b0b", ".H c #0e0707", ".t c #230707", ".2 c #310505", ".# c #83100b", "be c #070707", "#b c #200303", "aP c #2a0202", "#m c #3e0202", ".S c #1a0302", ".h c #3f0504", ".I c #560302", "aW c #0b0b0b", "#c c #340101", ".k c #8e221e", ".U c #6e0200", ".u c #6a0401", "bj c #010101", ".a c #a9180f", "bi c #010101", "ba c #050505", "bg c #080808", "a4 c #0d0d0d", "aV c #210201", "aG c #220201", "bf c #222222", "aO c #230201", "aD c #240201", "aw c #250201", "#U c #260201", "#E c #270201", "#v c #280201", ".g c #480704", ".s c #870501", ".G c #270201", ".3 c #610401", "a3 c #010101", "#l c #280101", ".1 c #4a0301", ".b c #b2190f", ".l c #a1140f", "bh c #000000", ".J c #450301", ".f c #730d08", ".r c #8f0602", ".v c #9c1612", ".V c #b82621", "a9 c #010101", "a8 c #020202", "b# c #060606", "a7 c #090909", "b. c #0b0b0b", "bb c #151515", "bc c #161616", "bd c #1a1a1a", "a6 c #1b1a1a", "a2 c #1e0302", "a5 c #292929", "a0 c #2b0201", ".R c #2d0201", "a1 c #330503", "aZ c #340504", "#p c #370502", "#r c #3c1110", "#s c #400b09", "#q c #420402", "#t c #440402", "#a c #480401", ".y c #4a0301", "#y c #4a0604", "#z c #4a0705", "## c #4c0301", "#A c #4c0705", "#B c #4e0907", "aX c #4f3332", ".F c #510201", "#C c #520605", ".z c #590401", "aY c #652d2c", ".4 c #670b08", "#k c #680402", "aC c #690401", "aU c #690402", "aF c #690502", ".Q c #6a0401", ".E c #6a0402", "aJ c #6a0502", ".w c #6a110e", "aN c #6b0502", ".A c #6c0502", "#8 c #6d0401", "#. c #6d0501", "ac c #6d0502", ".x c #6d0804", ".5 c #6d100c", "ak c #6f0502", "#u c #750d0a", "ao c #751613", "#D c #79110e", ".0 c #7a0501", ".6 c #7a0703", ".9 c #7b0602", ".D c #7c0602", ".K c #7c1a17", ".C c #810603", "an c #821410", ".7 c #830602", ".B c #840703", ".8 c #870602", "#Q c #877f7e", "ap c #89110e", "#R c #8b8382", "#o c #942a26", "#5 c #959595", "#6 c #979797", ".e c #99140c", ".X c #9a0804", "#x c #a02f2b", ".Y c #a10803", "#P c #a16563", ".Z c #a20702", "aa c #a5a5a5", ".q c #a60903", "#S c #a63834", "ag c #a77675", "#Y c #a7a7a7", "#d c #ae1a15", ".L c #af2622", "ah c #b1807f", "ab c #b2b2b2", "#i c #b32925", ".W c #b32b27", "#h c #b35e5b", "#Z c #b5b5b5", "aq c #b60904", "aQ c #b61c17", ".p c #b80903", "aj c #bb0904", ".M c #bb0a04", "aT c #bc0903", ".n c #bc0b04", "#M c #bc0d06", "am c #bc130e", ".o c #bd0903", "#f c #bd0d07", "#7 c #be0904", "#T c #be0a05", "#4 c #be7e7c", "#j c #bf0903", "#H c #bf110a", "#I c #bf120d", ".P c #c00903", "#1 c #c00904", "au c #c10903", "#O c #c10f0a", "#J c #c1130d", ".d c #c11a10", ".N c #c20a03", "av c #c30903", "#L c #c31711", "aS c #c40f09", "#K c #c41610", "ad c #c51e18", "aH c #c51e19", "ax c #c61a15", "al c #c61c17", "ar c #c71b16", "#F c #c71c17", "#w c #c71d18", "aL c #c71e19", "#g c #c80a04", ".m c #c80f08", "#9 c #c81e18", "at c #c9110b", ".O c #ca0a04", "aI c #cb1009", "#W c #cb110b", "az c #cb1b15", "ae c #cc140e", "#2 c #cc1d18", "ai c #cc443f", "#n c #ce1d17", "a# c #ce8e8c", "#0 c #d0514c", "#e c #d1312c", "aR c #d33f3b", "#G c #d43530", "af c #d47573", "aA c #d7312c", "aB c #d7332d", "ay c #d7332e", "#X c #d79795", "#N c #d8342f", "#V c #d83732", "as c #d93630", "a. c #da3832", "#3 c #da3934", "aE c #da3a35", "aK c #da3b36", ".c c #dc1f14", "aM c #dc403b", "QtQtQtQtQtQtQtQtQtQtQtQt.#.a.b.c.d.e.f.g.h.iQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQt.j.k.l.m.n.o.o.o.p.q.r.s.tQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQt.u.v.w.x.y.z.A.B.C.D.E.F.G.HQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQt.I.J.K.L.M.N.O.O.O.P.Q.R.S.TQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt.U.V.W.X.Y.Y.Y.Y.Z.0.1QtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQt.2.3.4.5.6.7.8.8.9#.###a#bQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#c#d#e#f#g#h#i.O#j#k#lQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#m#n#o#p#q#r#s#t#u.A#vQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#m#w#x#y#z#A#B#C#D.A#EQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#m#F#G#H#I#J#K#L#M.A#vQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#m#F#N#O#P#Q#R#S#T.Q#UQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#m#w#V#W#X#Y#Z#0#1.Q#UQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#m#2#3#W#4#5#6#0#7#8#vQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#m#9a.#Wa#aaab#0#7ac#vQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#mada.aeafagahaiajak#vQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#mala.amanaoaoapaqac#UQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#marasatau.P.Pav#1.AawQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#maxay#W.O.O.O.O#1.AawQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#mazaA#W.O.O.O.O#1ac#vQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#maxaB#W.O.O.O.O#1.A#vQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#m#w#3#W.O.O.O.O#1aCaDQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#m#waE#W.O.O.O.O#1aFaGQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#maH#3aI.O.O.O.O#1aJaGQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#maHaKaI.O.O.O.O#1aJaGQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQt#maLaMaI.O.O.O.O#1aNaOQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtaPaQaRaS.O.O.O.OaTaUaVQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtaWaXaYaZa0a0a0a0a1a2a3QtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQta4a5a6a7a8a9a9a8b.b#a9QtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtbabbb#a9a9a9a9a9a9a9a9QtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtbabcb#a9a9a9a9a9a9a9a9QtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtbabdb#a9a9a9a9a9a9a9a9QtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtbebfbga9a9a9a9a9bhbibjQtQtQtQtQtQtQtQtQtQt"}; debian/GNUMail.desktop0000664000000000000000000000043211655035754012031 0ustar [Desktop Entry] Name=GNUMail Name[bg]=Пощенски клиент (GNUMail) Comment=Mail client for GNUstep Comment[bg]=Пощенски клиент за GNUstep Version=1.0 Type=Application Categories=Network;Email; Icon=/usr/share/GNUstep/GNUMail.app/GNUMail.tiff Exec=GNUMail debian/menu0000664000000000000000000000112011650744726010065 0ustar ?package(gnumail.app):\ needs="x11"\ section="Applications/Network/Communication"\ hints="GNUstep,mail"\ title="GNUMail"\ longtitle="A GNUstep fully featured mail application"\ description="GNUMail is a fully featured mail application running on Linux\ (or FreeBSD, OpenBSD, etc) and Apple Mac OS X. It uses the GNUstep development\ framework or Apple Cocoa, which is based on the OpenStep specification provided\ by NeXT, Inc.. GNUMail is licensed under the GPL, and the full sources\ of the application are available."\ icon="/usr/share/pixmaps/GNUMail.xpm"\ command="GNUMail" debian/rules0000775000000000000000000000410011655176274010261 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 include /usr/share/GNUstep/debian/config.mk export GNUSTEP_MAKEFILES := $(GS_MAKE_DIR) export GNUSTEP_INSTALLATION_DOMAIN := SYSTEM d_app := $(CURDIR)/debian/gnumail.app LDFLAGS := -Wl,-z,defs -Wl,--as-needed -Wl,-rpath,/usr/lib/gnumail.app ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) optim := debug=yes endif build: build-stamp build-stamp: dh_testdir $(MAKE) messages=yes $(optim) LDFLAGS="$(LDFLAGS)" touch $@ clean: dh_testdir dh_testroot $(MAKE) distclean install: build dh_testdir dh_testroot dh_prep # Cheat GNUstep Make to install the library at /usr/lib/gnumail.app. dh_installdirs usr/lib/gnumail.app $(MAKE) install GNUSTEP_SYSTEM_LIBRARIES=/usr/lib/gnumail.app \ DESTDIR=$(d_app) dh_install debian/GNUMail.xpm usr/share/pixmaps/ dh_install debian/*.desktop usr/share/applications/ rm $(d_app)$(GNUSTEP_SYSTEM_APPS)/*.app/Resources/*.desktop # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs ChangeLog dh_installdocs dh_installmenu dh_installman debian/GNUMail.1 # Move all arch-independent Resources to /usr/share for FHS compliance. gsdh_gnustep dh_installdirs usr/share/GNUstep/ApplicationSupport/GNUMail mv $(d_app)$(GNUSTEP_SYSTEM_APPS)/GNUMail.app/Resources \ $(d_app)/usr/share/GNUstep/GNUMail.app dh_link usr/share/GNUstep/GNUMail.app \ $(GNUSTEP_SYSTEM_APPS)/GNUMail.app/Resources for d in $(d_app)$(GNUSTEP_SYSTEM_APPLICATION_SUPPORT)/GNUMail/*; do \ mv $$d/Resources $(d_app)/usr/share/GNUstep/ApplicationSupport/GNUMail/`basename $$d` \ && dh_link usr/share/GNUstep/ApplicationSupport/GNUMail/`basename $$d` \ $(GNUSTEP_SYSTEM_APPLICATION_SUPPORT)/GNUMail/`basename $$d`/Resources; \ done dh_strip --dbg-package=gnumail.app-dbg dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/GNUMail.10000664000000000000000000000210511650744726010520 0ustar .TH GNUMAIL 1 "January 23, 2005" .\" Please adjust this date whenever revising the manpage. .\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .SH NAME GNUMail \- a fully featured mail application .SH SYNOPSIS .B openapp GNUMail .SH DESCRIPTION This manual page documents briefly the .B GNUMail GNUstep application. This manual page was written for the Debian distribution because the original program does not have a manual page. .PP \fBGNUMail\fP is a fully featured mail application running on Linux (or FreeBSD, OpenBSD, etc) and Apple Mac OS X. It uses the GNUstep development framework or Apple Cocoa, which is based on the OpenStep specification provided by NeXT, Inc.. GNUMail is licensed under the GPL, and the full sources of the application are available. .br GNUMail was written from scratch. It uses Pantomime as its mail handling framework. .SH OPTIONS There are no options. .SH SEE ALSO .BR http://www.collaboration-world.com/gnumail .br .BR http://www.gnustep.org/ .br .BR GNUstep (7) .br .BR openapp (1) debian/docs0000664000000000000000000000010111655036021010032 0ustar Documentation/PREFERENCES Documentation/TODO Documentation/WHOIS