debian/0000755000000000000000000000000011733052665007176 5ustar debian/upstream.changelog0000644000000000000000000000055611715743065012716 0ustar Changes added to fspanel: When the panel is minimized to the right side it doesn´t reserve screenspace for it self anymore.This means windows can be fully maximized. This works if the panel is on top or on bottom of the screen. This make more sense too me than the original behaviour of fspanel which always reserved screenspace on the bottom of the screen. debian/patches/0000755000000000000000000000000011715731603010621 5ustar debian/patches/10-Makefile.patch0000644000000000000000000000175511715731603013605 0ustar From 1e742aca17130883e217926d099bb63f30c4f5d0 Mon Sep 17 00:00:00 2001 From: Jari Aalto Date: Mon, 19 Sep 2011 23:33:25 +0300 Subject: [PATCH] Makefile: disable strip, obey ld --as-needed Organization: Private Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Signed-off-by: Jari Aalto --- Makefile | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9d20d90..d1c0906 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,13 @@ CC=cc CFLAGS= -O2 -I/usr/X11R6/include -DHAVE_XPM -DXFT -DCLOCK -LDFLAGS= -L/usr/X11R6/lib -lX11 -lXpm -lXft +LDFLAGS= -L/usr/X11R6/lib +LDADD = -lX11 -lXpm -lXft PROGNAME=hpanel $(PROGNAME): Makefile hpanel.c hpanel.h icon.xpm - $(CC) $(CFLAGS) $(LDFLAGS) hpanel.c -o $(PROGNAME) + $(CC) $(CFLAGS) $(LDFLAGS) hpanel.c $(LDADD) -o $(PROGNAME) @ls -l $(PROGNAME) - strip $(PROGNAME) +# strip $(PROGNAME) @ls -l $(PROGNAME) install: -- 1.7.5.4 debian/patches/series0000644000000000000000000000002211715731603012030 0ustar 10-Makefile.patch debian/compat0000644000000000000000000000000211733052320010360 0ustar 9 debian/control0000644000000000000000000000142511733052322010571 0ustar Source: hpanel Section: x11 Priority: optional Maintainer: Jari Aalto Build-Depends: debhelper (>= 9), autotools-dev, libx11-dev, libxpm-dev, x11proto-core-dev, libxft-dev Standards-Version: 3.9.3.1 Vcs-Browser: http://git.debian.org/?p=collab-maint/hpanel.git Vcs-Git: git://git.debian.org/git/collab-maint/hpanel.git Homepage: http://freshmeat.net/projects/hpanel Package: hpanel Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: minimalist panel for X Hpanel is hacked version of fspanel, a small panel that lists your windows and allows you to switch workspaces. It requires a window manager that is compliant with the NETWM specification. It works nicely with pekwm and aewm++, and handles maximized windows better than fspanel. debian/install0000644000000000000000000000001711715731603010561 0ustar hpanel usr/bin debian/changelog0000644000000000000000000000266511733052357011057 0ustar hpanel (0.3.2-4) 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/rules - Enable all hardening flags. - Use DEB_*_MAINT_* variables. -- Jari Aalto Fri, 23 Mar 2012 06:48:15 -0400 hpanel (0.3.2-3) unstable; urgency=low * debian/compat - Update to 9 * debian/control - (Build-Depends): update to debhelper 9, dpkg-dev 1.16.1. * debian/rules - (override_dh_clean): New. Preserve README.orig. - Use hardened CFLAGS. http://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags -- Jari Aalto Sun, 12 Feb 2012 09:06:14 -0500 hpanel (0.3.2-2) unstable; urgency=low * debian/compat - Update to 8. * debian/control - (Build-Depends): use debhelper 8. - (Standards-Version): update to 3.9.2. * debian/copyright - Update to DEP 5. * debian/patches - (10): Update. Add LDADD to fix a problem with ld --as-needed. Patch thanks to Andreas Moog (LP #771057; Closes: #632899). * debian/rules - (get-changelog): clean up whitespaces. -- Jari Aalto Mon, 19 Sep 2011 23:44:26 +0300 hpanel (0.3.2-1) unstable; urgency=low * Initial release (Closes: #582652). -- Jari Aalto Sat, 22 May 2010 17:42:45 +0300 debian/watch0000644000000000000000000000010211715731603010214 0ustar version=3 # No homepage # http://url/pacage/package-(.+)\.tar\.gz debian/hpanel.1.pod0000644000000000000000000000207111715731603011304 0ustar # This is manual page in Perl POD format. Read more at # http://perldoc.perl.org/perlpod.html or run command: # # perldoc perlpod | less # # To check the syntax: # # podchecker *.pod # # Create manual page with command: # # pod2man PAGE.N.pod > PAGE.N =pod =head1 NAME hpanel - a minimalist panel for X =head1 SYNOPSIS hpanel [options] =head1 DESCRIPTION hpanel is a minimalist panel for X. Hpanel is version of fspanel (handles maximized windows better). It contains a small panel that lists windows and allows switching workspaces for use with a window manager that supports NETWM specification. Known working window managers are pekwm and aewm++. =head1 OPTIONS =over 4 =item B<-display > Specify X display =item B< -geometry +XPOS+YPOS> Initial window position. =item B<-h> Print available options. =back =head1 ENVIRONMENT None. =head1 FILES None. =head1 SEE ALSO C =head1 AUTHORS This manual page was written by Jari Aalto , for the Debian GNU system (but may be used by others). =cut debian/rules0000755000000000000000000000174611733052636010264 0ustar #!/usr/bin/make -f PACKAGE = hpanel CHANGELOG = debian/upstream.changelog export DEB_BUILD_MAINT_OPTIONS = hardening=+all export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed CFLAGS += \ -I/usr/X11R6/include \ -I/usr/include/freetype2 \ -DHAVE_XPM \ -DXFT \ -DCLOCK get-changelog: awk '/Installation:/ {exit} /Changes/,/Installation:/ {print} ' \ README \ | sed -e 's/[[:space:]]$$//' \ -e 's/^\t/ /' \ > $(CHANGELOG) man: $(MAKE) -C debian -f pod2man.mk PACKAGE=$(PACKAGE) makeman override_dh_clean: # Preserve original file cp README.orig README.orig.keep dh_clean mv README.orig.keep README.orig override_dh_installchangelogs: dh_installchangelogs $(CHANGELOG) override_dh_auto_configure: # Skip this step override_dh_auto_build: man $(MAKE) CFLAGS="$(CPPFLAGS) $(CFLAGS)" LDFLAGS="$(LDFLAGS)" hpanel override_dh_auto_install: # Disable. See debian/install %: dh $@ .PHONY: man get-changelog # End of file debian/docs0000644000000000000000000000000711715731603010042 0ustar README debian/copyright0000644000000000000000000000452411715732511011131 0ustar Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=174 X-Format: http://dep.debian.net/deps/dep5 Upstream-Name: hpanel Upstream-Contact: Knorke (http://phrat.de) Source: http://freshmeat.net/projects/wmfrog X-Spource: http://freshmeat.net/projects/hpanel X-Comment: See also http://phrat.de/downloads.html Files: * Copyright: 2000-2002 Knorke 2000-2002 Peter Zelezny License: BSD Files: debian/* Copyright: 2006-2012 Jari Aalto 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: BSD [From file COPYING] . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Soft- ware"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following condi- tions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/source/0000755000000000000000000000000011715731603010472 5ustar debian/source/format0000644000000000000000000000001411715731603011700 0ustar 3.0 (quilt) debian/pod2man.mk0000644000000000000000000000334611715731603011071 0ustar # pod2man.mk -- Makefile portion to convert *.pod files to manual pages # # Copyright information # # Copyright (C) 2008-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 # # 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 called PACKAGE ?= package # Optional variables to set MANSECT ?= 1 PODCENTER ?= User Commands PODDATE = $$(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= LANG=C $(POD2MAN) $(POD2MAN_FLAGS) \ --center="$(PODCENTER)" \ --date="$(PODDATE)" \ --name="$(PACKAGE)" \ --section="$(MANSECT)" \ $(MANPOD) \ | sed 's,[Pp]erl v[0-9.]\+,$(PACKAGE),' \ > $(MANPAGE) && \ rm -f pod*.tmp # End of of Makefile part debian/clean0000644000000000000000000000002611715731603010175 0ustar *.o debian/*.1 hpanel debian/manpages0000644000000000000000000000001311715731603010702 0ustar debian/*.1