--- gentoo-0.15.5.orig/debian/rules +++ gentoo-0.15.5/debian/rules @@ -0,0 +1,62 @@ +#!/usr/bin/make -f +# Derived from the dh_make example. + +tmp := $(CURDIR)/debian/gentoo + +CFLAGS := -g -Wall -Wmissing-prototypes -Wno-unused -ansi -pedantic +ifneq "$(findstring noopt,$(DEB_BUILD_OPTIONS))" "" +CFLAGS += -O0 +else +CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: config.status + $(MAKE) + touch $@ + +config.status: configure + dh_testdir + CFLAGS="$(CFLAGS)" ./configure --prefix=/usr --sysconfdir=/etc \ + --mandir='$${prefix}/share/man' + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean build-stamp + +install: build-stamp + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install DESTDIR=$(tmp) + dh_installdirs usr/share/doc/gentoo/html usr/share/man/man1 + cp -a docs/* $(tmp)/usr/share/doc/gentoo/html + mv $(tmp)/usr/share/doc/gentoo/html/gentoo.1x \ + $(tmp)/usr/share/man/man1/ + +binary-indep: +# No architecture independent packages here. + +binary-arch: install + dh_testdir + dh_testroot + dh_installdocs BUGS CONFIG-CHANGES CREDITS README \ + README.gtkrc TODO + install -m644 icons/README $(tmp)/usr/share/doc/gentoo/README.icons + dh_installmenu + dh_installchangelogs NEWS +ifeq "$(findstring nostrip,$(DEB_BUILD_OPTIONS))" "" + dh_strip +endif + 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 --- gentoo-0.15.5.orig/debian/control +++ gentoo-0.15.5/debian/control @@ -0,0 +1,26 @@ +Source: gentoo +Section: x11 +Priority: optional +Maintainer: Josip Rodin +Build-Depends: debhelper (>= 5), libgtk2.0-dev, libglib2.0-dev +Standards-Version: 3.8.2 +Homepage: http://www.obsession.se/gentoo/ + +Package: gentoo +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: file +Description: a fully GUI-configurable, two-pane X file manager + gentoo is a two-pane file manager for the X Window System. gentoo lets the + user do (almost) all of the configuration and customizing from within the + program itself. If you still prefer to hand-edit configuration files, + they're fairly easy to work with since they are written in an XML format. + . + gentoo features a fairly complex and powerful file identification system, + coupled to a object-oriented style system, which together give you a lot + of control over how files of different types are displayed and acted upon. + Additionally, over a hundred pixmap images are available for use in file + type descriptions. + . + gentoo was written from scratch in ANSI C, and it utilises the GTK+ toolkit + for its interface. --- gentoo-0.15.5.orig/debian/changelog +++ gentoo-0.15.5/debian/changelog @@ -0,0 +1,380 @@ +gentoo (0.15.5-1ubuntu1) karmic; urgency=low + + * New upstream version (LP:395529) + - Removed use of the dreaded GtkCList widgets on the DirPane config + pages. Currently this also removed support for drag-and-drop in + the right (selected) list; I might fix that later on. For now, + just use the pretty arrow buttons below the list. + - Bug-fix: the DpFocusISrch command, which was suffering from some + bad porting (to GTK+ 2.0) issues [bug #2786313]. + - Bug-fix: the overwrite confirm dialog, which did not convert its + filenames to UTF-8 for display, and thus showed gibberish for any + names with non-ASCII characters in them. + - Bug-fix: the textviewer also didn't convert filenames to UTF-8 + before display, causing warnings from Pango (and gibberish). + - Fixed a bug that made the File Type configuration become totally + confused if you used arrow keys to step around in the list a few + times and then tried editing [bug #2728738]. + - Removed yet another GtkCList, this time in the Styles config page's + Action part. The entire Action editing was totally remodelled and + modernized. It now uses in-place editing right in the list view, + and uses text styling (overridden properties are bold) for clarity. + - Made the configure script require glib 2.14 or greater, for GRegex. + - Fixed a bug [#2716890] that caused gentoo to crash with a "memory + freed twice" error by just changing a pane's path. + - Fixed a bug that caused sizes shown in e.g. the status bar to be + formatted with the wrong unit. KB and MB both showed up as GB. + - Changed a couple of small helper buttons (the magnifying glass + meaning "pick from dialog" and the "Clr" button in the buttons + config) to use standard GTK+ 2.0 stock images instead. The glass is + now a pair of binoculars, the "Clr" is a ... uh ... paintbrush? + * Update Standards-Version to 3.8.2 + + -- Dennis Craven Mon, 06 Jul 2009 22:40:20 -0400 + +gentoo (0.15.3-0.1) unstable; urgency=low + + * Non-maintainer upload. + + With permission from maintainer. + * New upstream with GTK2. (Closes: #515286). + + Change build-depends from gtk1.2 and glib1.2 to 2.0. + * Move homepage from package description to Homepage. + * Add ${misc:Depends} for debhelper package. + * Move DH_COMPAT from rules to debian/compat. + * Version path to GPL license in debian/copyright to GPL-2. + * Update doc-base section. + * Bump Standards Version to 3.8.0. + + Menu policy transition. + + -- Barry deFreese Fri, 27 Mar 2009 15:44:47 -0400 + +gentoo (0.11.56-1) unstable; urgency=low + + * New upstream version, closes: #411741. + + Includes the patch for errno ignoring in + src/window.c:win_window_set_title(), applied in the NMU below, + closes: #364275, #368849. + * Undid the po/Makefile.in.in patch to mkinstalldirs - it now has a + purpose (to go to top_builddir for the script), otherwise build fails. + * Patch from Cyril Brulebois to src/mntent_wrap.c so that + GNU/kFreeBSD is detected properly, closes: #414416. + * Updated watch file to format version 3, and updated the upstream site + to SF (the old one is 401), closes: #449824. I actually missed + Raphael Geissert patch for this and investigated it myself, d'oh :) + * Updated debhelper compatibility level to 5, and removed manual conffiles + (only /etc in there). + * Updated standards version to 3.7.2, with no changes. + * Quoted needs="X11" in the menu file, to appease lintian. + + -- Josip Rodin Mon, 17 Mar 2008 00:09:07 +0100 + +gentoo (0.11.55-1.1) unstable; urgency=low + + * Non-maintainer upload to fix failure to operate with files. + * Applied the suggested patch to fix the problem when dealing with files, + when a locale is set. Thanks to Anders Lageras for the link to the patch. + (Closes: #368849, #364275). + + -- Margarita Manterola Mon, 14 Aug 2006 19:21:36 -0300 + +gentoo (0.11.55-1) unstable; urgency=low + + * New upstream version, closes: #291688. The config.{guess,sub} files in + it are just a year old (compared to four year old ones that were there + before), see if that works for you, closes: #356441. + + -- Josip Rodin Fri, 31 Mar 2006 14:26:01 +0200 + +gentoo (0.11.46-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Removed xlibs-dev build-dep (Closes: #346699) + + -- Marc 'HE' Brockschmidt Fri, 20 Jan 2006 21:20:33 +0100 + +gentoo (0.11.46-1) unstable; urgency=low + + * New upstream version. + + -- Josip Rodin Thu, 4 Mar 2004 00:00:02 +0100 + +gentoo (0.11.34-2) unstable; urgency=low + + * Updated gentoorc to use a free PDF viewer, closes: #183798. + * Also added some other useful changes in it. + + -- Josip Rodin Sat, 29 Mar 2003 17:55:15 +0100 + +gentoo (0.11.34-1) unstable; urgency=low + + * New upstream version, closes: #163431. + * Policy 3.5.7 changes (debug out, noopt in). + + -- Josip Rodin Sat, 5 Oct 2002 20:23:51 +0200 + +gentoo (0.11.32-1) unstable; urgency=low + + * New upstream version, includes our .31 patches. + + -- Josip Rodin Sun, 25 Aug 2002 13:39:22 +0200 + +gentoo (0.11.31-3) unstable; urgency=low + + * Require __linux__, not __linux, which fixes the PowerPC build. + + -- Josip Rodin Sat, 24 Aug 2002 18:25:59 +0200 + +gentoo (0.11.31-2) unstable; urgency=low + + * Replaced config.{guess,sub} with versions NOT from 1999 (doh!), + closes: #158000. + + -- Josip Rodin Sat, 24 Aug 2002 10:41:24 +0200 + +gentoo (0.11.31-1) unstable; urgency=low + + * New upstream version, closes: #157906. + * Added two small syntax changes to make it compile. + * Moved manual page installation from Makefile.am to the rules file, + patching automake crap is too much fuss. + * Changed build-dependency from xlib6g-dev to xlibs-dev. + + -- Josip Rodin Fri, 23 Aug 2002 11:20:30 +0200 + +gentoo (0.11.26-1) unstable; urgency=low + + * New upstream version, includes most of our patches for upstream stuff, + closes: #146209. + + -- Josip Rodin Fri, 22 Feb 2002 15:56:22 +0100 + +gentoo (0.11.19-1) unstable; urgency=low + + * New upstream version. + * Forward-ported the .18-2 alpha/osf patch. + * Included in src/gentoo.h to fix warnings and fix sorting by + time, closes: #124086. It's good to pay attention to warnings sometimes! + + -- Josip Rodin Thu, 14 Feb 2002 19:44:34 +0100 + +gentoo (0.11.18-2) unstable; urgency=high + + * __EXTENSIONS__ and POSIX_C_SOURCE shouldn't be excluded on Linux Alpha, + patch from Christopher C. Chimelis, closes: #121383. + (will anyone mind the high urgency for this? there's only one way to + find out) + * Mark /etc/gentoogtkrc as a conffile, too, thanks Lintian. + + -- Josip Rodin Sun, 9 Dec 2001 00:14:07 +0100 + +gentoo (0.11.18-1) unstable; urgency=low + + * New upstream version. + * Fixed to remove the needless Alpha exceptions, patch included upstream, + closes: #112335. + * Another tweak in the config file: run x-terminal-emulator instead of + xterm for new_shell. + + -- Josip Rodin Tue, 16 Oct 2001 20:39:06 +0200 + +gentoo (0.11.17-1) unstable; urgency=low + + * New upstream version. + * Updates for the new build system. The icons are in icons/ subdirectory + of /usr/share/gentoo now... + * Moved the menu item to Apps/Tools. + + -- Josip Rodin Sat, 1 Sep 2001 22:26:20 +0200 + +gentoo (0.11.16-1) unstable; urgency=low + + * New upstream version. + * Updated for Policy 3.5.?. + + -- Josip Rodin Thu, 3 May 2001 22:39:58 +0200 + +gentoo (0.11.15-1) unstable; urgency=low + + * New upstream version. + * Fixed a thing or two in gentoorc example. + * Updated for Policy 3.2.1. + + -- Josip Rodin Sun, 17 Sep 2000 02:13:42 +0200 + +gentoo (0.11.14-1) unstable; urgency=low + + * New upstream version, which also closes: #60715. + * Moved gentoo binary to /usr/bin (and manpage to /usr/share/man). + + -- Josip Rodin Sun, 19 Mar 2000 02:39:54 +0100 + +gentoo (0.11.10-3) frozen unstable; urgency=low + + * Used patch from Ben Gertzfield (which was obviously used by the + upstream author in 0.11.12), to make gentoo compile on Alpha and + any other 64bit platform, closes: #55246. + + -- Josip Rodin Mon, 6 Mar 2000 01:00:58 +0100 + +gentoo (0.11.10-2) unstable; urgency=low + + * Added a doc-base file, courtesy of Christian Marillat, closes: #49561. + * Standards-Version: 3.1.1. Added Build-Depends:. + + -- Josip Rodin Sat, 27 Nov 1999 16:39:32 +0100 + +gentoo (0.11.10-1) unstable; urgency=low + + * New upstream version. + * Minor updates in debian/*. + + -- Josip Rodin Sat, 6 Nov 1999 18:07:33 +0100 + +gentoo (0.11.9-2) unstable; urgency=low + + * Fixed the menu entry (/usr/bin/X11). + + -- Josip Rodin Sun, 12 Sep 1999 17:25:32 +0200 + +gentoo (0.11.9-1) unstable; urgency=low + + * New upstream version (a lot of bugfixes!). + * Conforms to policy 3.x, which includes move to FHS etc. Required + using debhelper 2.0.40, and some other small changes to debian/* . + * Fixed some minor stuff in control and menu files. + + -- Josip Rodin Wed, 8 Sep 1999 22:17:17 +0200 + +gentoo (0.11.8-2) unstable; urgency=low + + * Oops, PTH_* variables were left pointing to /usr/local previously. + + -- Josip Rodin Wed, 25 Aug 1999 23:21:33 +0200 + +gentoo (0.11.8-1) unstable; urgency=low + + * New upstream version. + * Removed my alpha patch (now included upstream), and removed Makefile + patches (now included in debian/rules). + + -- Josip Rodin Sun, 4 Jul 1999 01:52:58 +0200 + +gentoo (0.11.7-2) unstable; urgency=low + + * Added some alpha patches to make it compile. Thank goodness for + faure.debian.org :) + + -- Josip Rodin Tue, 15 Jun 1999 22:50:52 +0200 + +gentoo (0.11.7-1) unstable; urgency=low + + * New upstream version + + -- Josip Rodin Fri, 4 Jun 1999 22:14:41 +0200 + +gentoo (0.11.6-1) unstable; urgency=low + + * New upstream version (once again, sorry for the delay) + + -- Josip Rodin Sun, 23 May 1999 22:12:11 +0200 + +gentoo (0.11.5-1) unstable; urgency=low + + * New upstream version (sorry for the delay) + + -- Josip Rodin Sat, 8 May 1999 12:12:07 +0200 + +gentoo (0.11.4-1) unstable; urgency=low + + * New upstream version + + -- Josip Rodin Sun, 11 Apr 1999 15:04:26 +0200 + +gentoo (0.11.3-1) unstable; urgency=low + + * New upstream version (skipped buggy .2) + + -- Josip Rodin Tue, 30 Mar 1999 14:56:40 +0200 + +gentoo (0.11.1-1) unstable; urgency=low + + * New upstream version. + * Now depends on GTK+/GLib 1.2.x. + + -- Josip Rodin Thu, 25 Mar 1999 23:20:15 +0100 + +gentoo (0.9.24-1) unstable; urgency=low + + * New upstream version. + * Standards-Version: 2.5.0 + + -- Josip Rodin Fri, 5 Mar 1999 20:43:06 +0100 + +gentoo (0.9.23-1) unstable; urgency=low + + * New upstream version, containing the man page. + + -- Josip Rodin Thu, 4 Feb 1999 19:35:03 +0100 + +gentoo (0.9.22-1) unstable; urgency=low + + * New upstream version (note that this one survived flawlessly + my last patch :) + * Updated the man page, although there should have been the + author's one in the archive. + + -- Josip Rodin Thu, 14 Jan 1999 23:03:48 +0100 + +gentoo (0.9.21-1) unstable; urgency=low + + * New upstream version + + -- Josip Rodin Fri, 8 Jan 1999 21:25:58 +0100 + +gentoo (0.9.20-1) unstable; urgency=low + + * New upstream version + + -- Josip Rodin Tue, 5 Jan 1999 01:04:48 +0100 + +gentoo (0.9.19-1) unstable; urgency=low + + * New upstream version + + -- Josip Rodin Mon, 28 Dec 1998 19:50:46 +0100 + +gentoo (0.9.18-1) unstable; urgency=low + + * New upstream version + * Now the source is really 'pristine' - no more missing files + + -- Josip Rodin Sun, 20 Dec 1998 15:15:00 +0100 + +gentoo (0.9.17-1) unstable; urgency=low + + * New upstream version + some cleanups in Makefile and debian/rules + + -- Josip Rodin Tue, 8 Dec 1998 14:30:00 +0100 + +gentoo (0.9.15-1) unstable; urgency=low + + * New upstream version (sorry, I skipped .14) + * small cleanups, and hopefully a fix for #30175 + + -- Josip Rodin Sat, 5 Dec 1998 02:20:00 +0100 + +gentoo (0.9.13-1) unstable; urgency=low + + * New upstream version, before I got time to upload the first :) + + -- Josip Rodin Sat, 14 Oct 1998 20:30:00 +0200 + +gentoo (0.9.12-1) unstable; urgency=low + + * Initial Release. + + -- Josip Rodin Sun, 11 Oct 1998 20:30:00 +0200 + +Local variables: +mode: debian-changelog +End: --- gentoo-0.15.5.orig/debian/compat +++ gentoo-0.15.5/debian/compat @@ -0,0 +1 @@ +5 --- gentoo-0.15.5.orig/debian/copyright +++ gentoo-0.15.5/debian/copyright @@ -0,0 +1,17 @@ +This package was first debianized by Josip Rodin +on Sun, 11 Oct 1998 20:30:00 +0200. + +Original source can be found at: http://www.obsession.se/gentoo/ + +Upstream author: Emil Brink + +This software is Copyright (c) 1998-2002 by Emil Brink. + +You are free to distribute this software under the terms +of the GNU General Public License, version 2. + +Full text of the GNU GPL can on Debian systems be found in the +`/usr/share/common-licenses/GPL-2' file. + +It is important to realize that this software comes +without ANY form of warranty. --- gentoo-0.15.5.orig/debian/menu +++ gentoo-0.15.5/debian/menu @@ -0,0 +1,5 @@ +?package(gentoo):\ + needs="X11"\ + section="Applications/File Management"\ + title="Gentoo"\ + command="gentoo" --- gentoo-0.15.5.orig/debian/watch +++ gentoo-0.15.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/gentoo/gentoo-(.*)\.tar\.gz --- gentoo-0.15.5.orig/debian/doc-base +++ gentoo-0.15.5/debian/doc-base @@ -0,0 +1,9 @@ +Document: gentoo +Title: Gentoo Manual +Author: Emil Brink +Abstract: This manual describes what Gentoo is, and how it can be used. +Section: File Management + +Format: HTML +Index: /usr/share/doc/gentoo/html/index.html +Files: /usr/share/doc/gentoo/html/*.html