debian/0000755000000000000000000000000012226170145007166 5ustar debian/leafpad.docs0000644000000000000000000000000712226170145011431 0ustar README debian/postinst0000644000000000000000000000055512226170145011001 0ustar #!/bin/sh set -e if [ "$1" = configure ]; then # Register leafpad as a gnome-text-editor in the alternatives system. update-alternatives \ --install /usr/bin/gnome-text-editor \ gnome-text-editor /usr/bin/leafpad 40 \ --slave /usr/share/man/man1/gnome-text-editor.1.gz \ gnome-text-editor.1.gz /usr/share/man/man1/leafpad.1.gz fi #DEBHELPER# debian/clean0000644000000000000000000000004012226170145010165 0ustar debian/*.1 data/leafpad.desktop debian/pod2man.mk0000644000000000000000000000332112226170145011056 0ustar # pod2man.mk -- Makefile portion to convert *.pod files to manual pages # # Copyright information # # Copyright (C) 2008-2013 Jari Aalto # # 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, see . # # Description # # Convert *.pod files to manual pages. Write this to 'install' # target: # # install: build $(MANPAGE) ifneq (,) This makefile requires GNU Make. endif # This variable *must* be set when calling PACKAGE ?= package RELEASE ?= $(PACKAGE) # Optional variables to set MANSECT ?= 1 PODCENTER ?= $$(date "+%Y-%m-%d") # Directories MANSRC = MANDEST = $(MANSRC) MANPOD = $(MANSRC)$(PACKAGE).$(MANSECT).pod MANPAGE = $(MANDEST)$(PACKAGE).$(MANSECT) POD2MAN = pod2man POD2MAN_FLAGS = --utf8 makeman: $(MANPAGE) $(MANPAGE): $(MANPOD) # make target - create manual page from a *.pod page podchecker $(MANPOD) LC_ALL=C $(POD2MAN) $(POD2MAN_FLAGS) \ --center="$(PODCENTER)" \ --name="$(PACKAGE)" \ --section="$(MANSECT)" \ --release="$(RELEASE)" \ $(MANPOD) \ > $(MANPAGE) && \ rm -f pod*.tmp # End of of Makefile part debian/watch0000644000000000000000000000011412226170145010213 0ustar version=3 http://savannah.nongnu.org/download/leafpad/leafpad-(.*)\.tar\.gz debian/rules0000755000000000000000000000207012226170145010245 0ustar #!/usr/bin/make -f PACKAGE = leafpad DESKTOP_KEYWORDS = Keywords=editor export DEB_BUILD_MAINT_OPTIONS = hardening=+all export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed man: $(MAKE) -C debian -f pod2man.mk PACKAGE=$(PACKAGE) makeman override_dh_auto_configure: cp config.sub config.sub.bak cp config.guess config.guess.bak cp -vf /usr/share/misc/config.sub /usr/share/misc/config.guess . dh_auto_configure # Restore original files. The will keep version control directory clean mv config.sub.bak config.sub mv config.guess.bak config.guess override_dh_auto_test: # The tests would consider Quilt .pc/ directory as # a part of translation POTFILES. Dynamically exclude all. ( find .pc/ -type f > po/POTFILES.skip ) dh_auto_test rm -f po/POTFILES.skip override_dh_installman: man dh_installman # Remove encofing, UTF is the default. sed --in-place \ -e '/Encoding/d' \ -e '3s/^/$(DESKTOP_KEYWORDS)\n/' \ debian/$(PACKAGE)/usr/share/applications/*.desktop %: dh $@ .PHONY: man # End of file debian/changelog0000644000000000000000000003272212226170145011046 0ustar leafpad (0.8.18.1-4) unstable; urgency=low * debian/control - (Build-Depends): Add autotools-dev. - (Standards-Version): Update to 3.9.4. - (Vcs-*): Update to anonscm.debian.org. * debian/copyright - Update year. * debian/rules - (override_dh_auto_configure): Use latest config.* files to correct Lintian warnings. Thanks to Jackson Doak . - (override_dh_installman): Add Keywords to *.desktop file http://standards.freedesktop.org/desktop-entry-spec/latest/ar01s05.html -- Jari Aalto Sat, 12 Oct 2013 09:46:50 +0300 leafpad (0.8.18.1-3) unstable; urgency=low * debian/control - (Build-Depends): Rm dpkg-dev; not needed with debhelper 9. - (Standards-Version): Update to 3.9.3.1. * debian/copyright - Update to format 1.0. * debian/patches - (10): Remove *.desktop Encoding fix. Handled now in debian/rules. * debian/rules - Enable all hardening flags. - Use DEB_*_MAINT_* variables. - (override_dh_installman): Remove encoding line from *.desktop. -- Jari Aalto Fri, 23 Mar 2012 13:34:49 -0400 leafpad (0.8.18.1-2) unstable; urgency=low * debian/compat - Update to 9 * debian/control - (Build-Depends): update to debhelper 9, dpkg-dev 1.16.1. * debian/patches - (20): Fix code for gcc hardened format specifiers. * debian/rules - Use hardened CFLAGS (FTBFS; Closes: #646343). http://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags -- Jari Aalto Wed, 08 Feb 2012 07:03:31 -0500 leafpad (0.8.18.1-1) unstable; urgency=low * New upstream release (Closes: #620894). * debian/compat - Update to 8. * debian/clean - Add data/leafpad.desktop, so that Debian patches is not generated (see patch 10). Thanks to Jonathan Marsden * debian/control - (Build-Depends): update to debhelper 8. Add intltool. - (Standards-Version): Update to 3.9.2. * debian/copyright - Update to new format. * debian/patches - (20): Delete. 'file:' protocol fix included. - (30): Delete. UTF-8 file handling included. * debian/rules - (override_dh_auto_test): Skip quilt files and run tests. Thanks to Jonathan Marsden for the idea. -- Jari Aalto Fri, 24 Jun 2011 10:46:42 +0300 leafpad (0.8.17-5) unstable; urgency=low * CANCEL 0.8.17-4 and rewind back to 0.8.17-3 to prepare fix for stable release * debian/patches - (30): New. Fix saving with in UTF16 encoding. Patch thanks to Alex . (Grave; Closes: #606145). -- Jari Aalto Fri, 07 Jan 2011 17:45:51 +0200 leafpad (0.8.17-4) unstable; urgency=medium * debian/control - (Standards-Version): Update to 3.9.1. * debian/leafpad.1.pod - (DESCRIPTION): Add warning about undefined locales and data loss * debian/patches - (30): New. Fix saving with in UTF16 encoding. Patch thanks to Alex . (Grave; Closes: #606145). * debian/rules - Simplify targets for dh(1). -- Jari Aalto Sun, 26 Dec 2010 16:04:23 +0200 leafpad (0.8.17-3) unstable; urgency=low * debian/control - (Standards-Version): Update to 3.8.4. * debian/patches - (number 20): If the input parameter contains a ":", Leadpad consideres it to be an URI. With the patch, names with a ":" run through URI check. If no matching supported scheme is found, then consider it filename. Patch thanks to Michael Dickson (Closes: #551357). -- Jari Aalto Fri, 26 Feb 2010 08:01:24 +0200 leafpad (0.8.17-2) unstable; urgency=low * Move to packaging format: 3.0 (quilt). * debian/clean - Move content from 'rules' for dh(1) to use. * debian/compat - Update to 7. * debian/control - (Build-Depends): debhelper 7.1 due to overrides in debian/rules. - (Maintainer): Remove GNOME team. No longer maintains. - (Uploaders): Remove and move email to 'Maintainer' * debian/copyright - (GPL): Use FSF URL (FSF recommendation). * debian/debian-vars.mk - Delete, obsoleted by dh(1). * debian/rules - Remove rules obsoleted by dh(1). * debian/patches - Convert to quilt. * debian/source/format - New file. * debian/leafpad.{docs,manpages} - Move content from 'rules' for dh(1) to use. -- Jari Aalto Fri, 01 Jan 2010 18:15:51 +0200 leafpad (0.8.17-1) unstable; urgency=low * New maintainer (Closes: #550141). * New upstream release. * debian/control: - (Build-Depends): Add dpatch, upgrade debhelper. - (Uploaders): New maintainer. - (Vcs-*): add Git repository URLs. * debian/rules - Convert CDBS to debhelper -- Jari Aalto Wed, 02 Dec 2009 07:46:43 +0000 leafpad (0.8.16-1) unstable; urgency=low [ Julien Lavergne ] * New upstream release. * Bump Standards-Version to 3.8.0. * debian/README.source : Add (3.8.0 requirement). * debian/patches/01-encoding-desktop.patch : Remove Encoding field in desktop file. * debian/copyright: Link to the GPL-2 licence instead of only GPL. [ Loic Minier ] * Include CDBS' debhelper rules before the gnome class. * Set Maintainer to Debian GNOME Maintainers; closes: #512459. [ Emilio Pozuelo Monfort ] * debian/copyright: Update for the new version. * Standards-Version is 3.8.3, no changes needed. -- Emilio Pozuelo Monfort Thu, 27 Aug 2009 23:26:11 +0200 leafpad (0.8.13-1) unstable; urgency=low [ Loic Minier ] * Add a get-orig-source target to retrieve the upstream tarball. [ Sven Arvidsson ] * Register as gnome-text-editor in the alternatives system; thanks roktas. (Closes: #418296) [ Julien Lavergne ] * New upstream version (Closes: #445702) - Printing support with GTK+2.10 (Closes: #376015) * debian/control.in - Move Homepage to offcial field - Bump libgtk-dev to >= 2.10 - Suggest evince-gtk for Print Preview - Bump debhelper version to 5 - Bump Standards-Version to 3.7.3 (No changes needed) - Wrap build-deps and deps. * debian/rule - Delete --disable-print flag - Delete autotools cdbs rules, include in gnome rules * debian/patches/70_relibtoolize_noguessub.patch : drop, take upstream. * debian/menu : Fix lintian warning in section. [ Loic Minier ] * Merge changes bu Julien Lavergne; closes: #456787. * Cleanups. -- Julien Lavergne Tue, 20 Nov 2007 00:19:29 +0100 leafpad (0.8.9-2) unstable; urgency=low * debian/patches/70_relibtoolize_noguesssub.patch : - updated with autoconf 2.59a-9 (Closes: #376078) -- Carlos Z.F. Liu Tue, 4 Jul 2006 21:40:33 +1200 leafpad (0.8.9-1) unstable; urgency=low * New upstream version 0.8.9 (Closes: #374402) * debian/patches : - 70_relibtoolize_noguesssub.patch updated * debian/rules : - drop --enable-chooser, it's default now - temporarily add --disable-print to avoid gnome dependencies * debian/control[.in] : - bump Standards-Version to 3.7.2, no change needed - remove Recommends on "cupsys-bsd | lpr", printing is disabled -- Carlos Z.F. Liu Thu, 22 Jun 2006 06:16:17 +1200 leafpad (0.8.7-1) unstable; urgency=low * New upstream release (Closes: #349215) * deprecate old leafpad.xpm file, use upstream's icon. * debian/patches: 00_relibtoolize_noguesssub.patch rename to 70_relibtoolize_noguesssub.patch, and updated * debian/watch : updated * update manpage (add a new command line option) * debian/copyright : update FSF address * debian/control.in : - remove intltool and lpr from build-dep - add gnome-pkg-tools to build-dep - add ${misc:Depends} to Depend * debian/rules : - add uploaders.mk - add utils.mk for list-missing feature - remove dh_desktop and switch back to gnome.mk - use += instead of := for DEB_CONFIGURE_EXTRA_FLAGS and DEB_INSTALL_MANPAGES_leafpad -- Carlos Z.F. Liu Fri, 10 Feb 2006 22:51:06 +1300 leafpad (0.8.3-1) unstable; urgency=low [ Carlos Z.F. Liu ] * New upstream release [ Ondřej Surý ] * Gnome Team Upload. -- Ondřej Surý Mon, 5 Sep 2005 09:49:27 +0200 leafpad (0.8.2-1) unstable; urgency=low * New upstream release * Bump to Standards-Version 3.6.2 * debian/patches/00_relibtoolize_noguesssub.patch : updated * debian/menu : add longtitle -- Carlos Z.F. Liu Sun, 3 Jul 2005 17:12:31 +1200 leafpad (0.8.1-1) unstable; urgency=low * New upstream release - Fixed space-separated filename bug (Closes: #307590) * debian/control - add lpr to Build-Depends field to enable the "print" menu item - add "cupsys-bsd | lpr" to Recommends field * debian/patches/00_relibtoolize_noguesssub.patch - updated * debian/leafpad.1 - updated -- Carlos Z.F. Liu Thu, 19 May 2005 22:23:47 +1200 leafpad (0.8.0-1) unstable; urgency=low * New upstream release - stop replacing string when user press Esc (Closes: #303502) * debian/control - extend Build-Depends a bit * debian/rules - use dh_desktop instead of cdbs's gnome.mk - add --enable-chooser configure option * move 00_relibtoolize.patch to 00_relibtoolize_noguesssub.patch - regenerated, remove config.guess and config.sub from the patch, let cdbs to handle them * 01_leafpad-0.7.9-file_chooser.patch - removed, merged in upstream * 02_fix_mkinstalldirs_in_po.patch - removed * debian/leafpad.lintian-overrides, debian/source.lintian-overrides - removed, lintian changed his mind -- Carlos Z.F. Liu Sat, 30 Apr 2005 15:00:51 +1200 leafpad (0.7.9-4) unstable; urgency=low * debian/leafpad.lintian-overrides, debian/source.lintian-overrides - use override to prevent lintian warning, thanks Lucas Wall * upload to official debian repository (Closes: #274512) -- Carlos Z.F. Liu Thu, 20 Jan 2005 16:59:48 +1300 leafpad (0.7.9-3) unstable; urgency=low * debian/rules - swith to cdbs * debian/copyright - add a timestamp to the Copyright line, thanks Samuel Mimram * debian/patches/00_relibtoolize.patch * debian/patches/01_leafpad-0.7.9-file_chooser.patch - use new filechooser, came from the upstream web page * debian/patches/02_fix_mkinstalldirs_in_po.patch - fix the mkinstalldirs error after relibtoolizing * debian/leafpad.1 - replace "notepad clone" by "simple text editor" -- Carlos Z.F. Liu Wed, 19 Jan 2005 02:22:35 +1300 leafpad (0.7.9-2) unstable; urgency=low * debian/rules: Clean some unused codes * debian/watch: Switch to savannah.nongnu.org -- Carlos Z.F. Liu Wed, 29 Dec 2004 01:41:14 +1300 leafpad (0.7.9-1) unstable; urgency=low * New upstream release -- Carlos Z.F. Liu Wed, 29 Dec 2004 00:58:34 +1300 leafpad (0.7.8-1) unstable; urgency=low * New upstream release -- Carlos Z.F. Liu Sun, 5 Dec 2004 22:32:07 +1300 leafpad (0.7.7.1-1) unstable; urgency=low * New upstream release * Regenerate xpm icon from new leafpad.png -- Carlos Z.F. Liu Wed, 24 Nov 2004 03:16:10 +1300 leafpad (0.7.7-1) unstable; urgency=low * New upstream release -- Carlos Z.F. Liu Sat, 20 Nov 2004 13:46:54 +1300 leafpad (0.7.6-1) unstable; urgency=low * New upstream release * Remove my additional .desktop file, upstream included it * Change maintainer's email address -- Carlos Z.F. Liu Tue, 16 Nov 2004 01:39:29 +1300 leafpad (0.7.5-1) unstable; urgency=low * New upstream release * add pkg-config to Build-Depends -- Carlos Z.F. Liu Sat, 30 Oct 2004 19:29:44 +1300 leafpad (0.7.4-1) unstable; urgency=low * New upstream release -- Carlos Z.F. Liu Sat, 23 Oct 2004 15:22:19 +1300 leafpad (0.7.3.1-1) unstable; urgency=low * New upstream release * Bump debhelper version to 4.2.21 for dh_desktop function. -- Carlos Z.F. Liu Sun, 17 Oct 2004 23:59:09 +1300 leafpad (0.7.3-1) unstable; urgency=low * New upstream release -- Carlos Z.F. Liu Sun, 17 Oct 2004 21:59:15 +1300 leafpad (0.7.2-1) unstable; urgency=low * Acknowledge NMU. Thanks for Ming Hua's work. * Change upstream author's email address. * Slightly change in the description, according to upstream source. * Use pbuilder to avoid unexpected experimental dependencies. -- Carlos Z.F. Liu Sat, 2 Oct 2004 22:17:51 +1200 leafpad (0.7.2-0.1) unstable; urgency=low * Non-maintainer upload with permission from maintainer. * New upstream release. * debian/control: Remove useless ${misc:Depends}. Also did a cosmetic change in the description. * Build in a pure unstable environment to get the dependencies correct. -- Ming Hua Fri, 1 Oct 2004 12:53:10 -0500 leafpad (0.7.1-2) unstable; urgency=low * Add a leafpad.desktop file (partly stolen from gedit). -- Carlos Z.F. Liu Wed, 29 Sep 2004 01:06:24 +1200 leafpad (0.7.1-1) unstable; urgency=low * Initial Release. -- Carlos Z.F. Liu Mon, 27 Sep 2004 17:12:26 +1200 debian/menu0000644000000000000000000000030112226170145010047 0ustar ?package(leafpad):needs="X11" section="Applications/Editors"\ title="LeafPad" command="/usr/bin/leafpad"\ longtitle="GTK+ based simple text editor"\ icon="/usr/share/pixmaps/leafpad.xpm" debian/prerm0000644000000000000000000000035512226170145010241 0ustar #!/bin/sh set -e case "$1" in remove|upgrade|deconfigure) # Unregister leafpad as a gnome-text-editor in the alternatives system. update-alternatives --remove gnome-text-editor /usr/bin/leafpad || : ;; esac #DEBHELPER# debian/leafpad.1.pod0000644000000000000000000000515212226170145011430 0ustar # Copyright # # Copyright (C) 2009-2010 Jari Aalto # # 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, see . # # Description # # This is manual page in Perl POD format. Read more at # http://perldoc.perl.org/perlpod.html or run command: # # perldoc perlpod | less # # To learn what TOP LEVEL section to use in manual pages, # see POSIX/Susv standard and "Utility Description Defaults" at # http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap01.html#tag_01_11 # # To check syntax: # # podchecker *.pod # # Create manual page with command: # # pod2man [options] PAGE.N.pod > PAGE.N =pod =head1 NAME leafpad - GTK+ based simple text editor =head1 DESCRIPTION leafpad is a simple GTK+ based text editor. The user interface is similar to Windows(tm) I. It aims to be lighter than GEdit and KWrite and to be as useful as them. B The encoding feature is derived from built-in Glib's iconv feature (g_convert), which you can check with command C. Leafpad can use only the listed encoding. Any other encoding cause serious data loss. =head1 SYNOPSIS leafpad [options] [filename] =head1 OPTIONS =over 4 =item B<--codeset=CODESET> Set codeset to open file. =item B<--display=DISPLAY> X display to use. =item B<--help> Dispaly the command line options. =item B<--screen=SCREEN> X screen to use. =item B<--sync> Make X calls synchronous. =item B<--tab-width=WIDTH> Set tab width. =item B<--version> Display version number. =back =head1 ENVIRONMENT None. =head1 FILES None. =head1 SEE ALSO gedit(1) kwrite(1) =head1 AUTHORS Program was written by Tarot Osuji . This manual page was written by Carlos Z.F. Liu for the Debian GNU system (but may be used by others). Updated by Jari Aalto . Released under license GNU GPL v2 or (at your option) any later version. For more information about license, visit . =cut debian/patches/0000755000000000000000000000000012226170145010615 5ustar debian/patches/20-format-spec.patch0000644000000000000000000000332312226170145014276 0ustar From 8fd99c3c6a6fdf7bb3dc7a2cd786e8a77011c879 Mon Sep 17 00:00:00 2001 From: Jari Aalto Date: Wed, 8 Feb 2012 06:59:36 -0500 Subject: [PATCH] gcc: format not a string literal and no format arguments Organization: Private Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Signed-off-by: Jari Aalto --- src/dialog.c | 4 ++-- src/gtkprint.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dialog.c b/src/dialog.c index 14b69d7..06c0f21 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -36,7 +36,7 @@ void run_dialog_message(GtkWidget *window, GTK_DIALOG_DESTROY_WITH_PARENT, type, GTK_BUTTONS_NONE, - str); + (const gchar*) str, ""); gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE); gtk_dialog_add_buttons(GTK_DIALOG(dialog), GTK_STOCK_OK, GTK_RESPONSE_CANCEL, NULL); @@ -61,7 +61,7 @@ GtkWidget *create_dialog_message_question(GtkWidget *window, gchar *message, ... GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE, - str); + (const gchar*) str, ""); gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE); gtk_dialog_add_buttons(GTK_DIALOG(dialog), GTK_STOCK_NO, GTK_RESPONSE_NO, diff --git a/src/gtkprint.c b/src/gtkprint.c index 3f39384..476a2be 100644 --- a/src/gtkprint.c +++ b/src/gtkprint.c @@ -165,7 +165,7 @@ static void create_error_dialog(GtkTextView *text_view, gchar *message) GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_NONE, - message); + (const gchar*) message, ""); gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE); gtk_dialog_add_buttons(GTK_DIALOG(dialog), GTK_STOCK_OK, GTK_RESPONSE_CANCEL, NULL); -- 1.7.9 debian/patches/series0000644000000000000000000000002512226170145012027 0ustar 20-format-spec.patch debian/docs0000644000000000000000000000002412226170145010035 0ustar NEWS README AUTHORS debian/source/0000755000000000000000000000000012226170145010466 5ustar debian/source/format0000644000000000000000000000001412226170145011674 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212226170145010364 0ustar 9 debian/copyright0000644000000000000000000000511312226170145011121 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Upstream-Name: leafpad Upstream-Contact: Tarot Osuji , Source: http://freshmeat.net/projects/leafpad X-Upstream-Bugs: Comment: See also http://tarot.freeshell.org/leafpad http://savannah.nongnu.org/projects/leafpad https://launchpad.net/~tarot Files: * Copyright: 2003-2011 Tarot Osuji 2000,2002 Paolo Maggi 2002,2003 Jeroen Zwartepoorte License: GPL-2+ Files: src/gtksourceiter.c src/gtksourceiter.h Copyright: 2002-2003 Jeroen Zwartepoorte, 2000-2002 Paolo Maggi License: LGPL-2+ Files: debian/* Copyright: 2009-2013 Jari Aalto 2009 Emilio Pozuelo Monfort 2007 Julien Lavergne 2005 Ondřej Surý 2004-2006 Carlos Z.F. Liu , 2004 Ming Hua X-Debianized-By: Carlos Z.F. Liu 2004-09-27 17:12:26+12 Mon License: GPL-2+ License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License can be found in "/usr/share/common-licenses/GPL-2". License: LGPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, see . . On Debian systems, the complete text of the GNU Library General Public License can be found in "/usr/share/common-licenses/LGPL-2". debian/leafpad.manpages0000644000000000000000000000001312226170145012271 0ustar debian/*.1 debian/control0000644000000000000000000000132012226170145010565 0ustar Source: leafpad Section: editors Priority: optional Maintainer: Jari Aalto Build-Depends: debhelper (>= 9), pkg-config, libgtk2.0-dev (>= 2.10), gnome-pkg-tools, intltool, autotools-dev Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/leafpad.git Vcs-Git: git://anonscm.debian.org/collab-maint/leafpad.git Homepage: http://tarot.freeshell.org/leafpad/ Package: leafpad Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Suggests: evince-gtk Description: GTK+ based simple text editor Leafpad is a simple GTK+ based text editor, the user interface is similar to Notepad. It aims to be lighter than GEdit and KWrite, and to be as useful as them.