--- fbdesk-1.2.1.orig/debian/control +++ fbdesk-1.2.1/debian/control @@ -0,0 +1,18 @@ +Source: fbdesk +Section: x11 +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Jari Aalto +Standards-Version: 3.7.2 +Build-Depends: debhelper ( >= 5 ), libx11-dev, libxext-dev, libxft-dev, libxpm-dev, libxt-dev, x-dev, libpng12-dev|libpng-dev, zlib1g-dev, autotools-dev + +Package: fbdesk +Architecture: any +Depends: ${shlibs:Depends} +Suggests: fluxbox (>= 0.1.12) +Description: desktop icons for fluxbox window manager + fbdesk lets you set shortcut icons on your desktop and + is designed for use with the fluxbox window manager. + . + Homepage: http://fluxbox.sourceforge.net/fbdesk/ --- fbdesk-1.2.1.orig/debian/dirs +++ fbdesk-1.2.1/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- fbdesk-1.2.1.orig/debian/changelog +++ fbdesk-1.2.1/debian/changelog @@ -0,0 +1,60 @@ +fbdesk (1.2.1-0ubuntu3) gutsy; urgency=low + + * debian/control: Update maintainer fields according to debian- + maintainer-field spec. + + -- Martin Pitt Wed, 15 Aug 2007 08:04:12 +0000 + +fbdesk (1.2.1-0ubuntu2) gutsy; urgency=low + + * debian/control: + - Sync with the version now in Debian. + - Change maintainer address. + * debian/rules: bump DH_COMPAT to 5. + + -- Timo Aaltonen Wed, 16 May 2007 14:36:35 +0300 + +fbdesk (1.2.1-0ubuntu1) breezy; urgency=low + + * New Upstream version + + -- Stephan Hermann Sun, 9 Oct 2005 21:58:44 +0200 + +fbdesk (1.1.5-1build1) breezy; urgency=low + + * Rebuild for new C++ ABI + + -- Matthias Klose Tue, 28 Jun 2005 08:27:40 +0000 + +fbdesk (1.1.5-1) unstable; urgency=low + + * New upstream release + (Closes: Bug#197271) + * Added in missing ' #include ' in src/{Icon,InputField}.cc + (Closes: Bug#196248) + * Includes patch to fix "size_t *" vs "unsigned int *" + (Closes: Bug#185072) + + -- Matt Hope Fri, 11 Jul 2003 17:26:20 +1000 + +fbdesk (1.1.4-1) unstable; urgency=low + + * New upstream release (un-uploaded) + + -- Matt Hope Fri, 6 Jun 2003 01:02:48 +1000 + +fbdesk (1.1.3-1) unstable; urgency=low + + * New upstream release + + -- Matt Hope Sun, 23 Mar 2003 19:37:02 +1100 + +fbdesk (1.1.2-1) unstable; urgency=low + + Greetings from linux.conf.au 2003 - Perth, Australia + http://conf.linux.org.au/ + + * Initial package + (Closes: Bug#177828 -- ITP) + + -- Matt Hope Wed, 22 Jan 2003 15:26:00 +0800 --- fbdesk-1.2.1.orig/debian/copyright +++ fbdesk-1.2.1/debian/copyright @@ -0,0 +1,37 @@ +Package: fbdesk + +Author: + Henrik Kinnunen (fluxgen at users.sourceforge.net) + +Copyright: + "MIT" - see below. + (See Bug#172990 why there isn't a /usr/share/common-licenses/MIT ) + +Homepage: + http://www.fluxbox.org/ + http://fluxbox.sourceforge.net/fbdesk/ + +Debian-ized: + dopey@debian.org; 20030120.1442 [Australia/Perth] + +--<[ ./COPYING ]>------------------------ + +Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +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 conditions: + +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 MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS 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. --- fbdesk-1.2.1.orig/debian/manpage.sgml +++ fbdesk-1.2.1/debian/manpage.sgml @@ -0,0 +1,88 @@ + + Matt"> + Hope"> + + Apr 8 2002"> + + 1"> + dopey@debian.org"> + + FBDESK"> + + + Debian GNU/Linux"> + GNU"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2002 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + Icons on the desktop + + + + &dhpackage; + + + + DESCRIPTION + + This manual page was written for the &debian; distribution + because the original program does not have a manual page. + + + &dhpackage; can display icons on the desktop in + your window manager, + + + + + WEBSITE + http://fluxbox.sourceforge.net/fbdesk/ + + + AUTHOR + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). + +
+ + --- fbdesk-1.2.1.orig/debian/rules +++ fbdesk-1.2.1/debian/rules @@ -0,0 +1,65 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 +export DH_COMPAT=5 + +BINARY=src/fbdesk +DEST=$(CURDIR)/debian/fbdesk +DEST_BIN=/usr/bin/fbdesk + +build: $(BINARY) +$(BINARY): + dh_testdir + + CXXFLAGS="-O2 -ffunction-sections" + ./configure --prefix=/usr + + $(MAKE) + +clean: + dh_testdir + dh_testroot + + -$(MAKE) distclean + + dh_clean + + +install: $(DEST)/$(DEST_BIN) +$(DEST)/$(DEST_BIN): $(BINARY) + dh_testdir + dh_testroot + @# dh_clean -k + dh_installdirs --all + dh_installchangelogs ChangeLog + + # Add here commands to install the package into debian/fbdesk + $(MAKE) install DESTDIR=$(DEST) + + +binary-indep: + #do nothing + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs README + #dh_installmenu + dh_installmanpages + dh_installchangelogs ChangeLog + dh_strip -a + dh_compress + dh_fixperms + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb + +binary: binary-indep binary-arch + +# not used from above. +debian/fbdesk.1: debian/manpage.sgml + docbook-to-man $< > $@ + +.PHONY: build clean binary-indep binary-arch binary --- fbdesk-1.2.1.orig/debian/fbdesk.1 +++ fbdesk-1.2.1/debian/fbdesk.1 @@ -0,0 +1,77 @@ +.\" This -*- nroff -*- file has been generated from +.\" DocBook SGML with docbook-to-man on Debian GNU/Linux. +...\" +...\" transcript compatibility for postscript use. +...\" +...\" synopsis: .P! +...\" +.de P! +\\&. +.fl \" force out current output buffer +\\!%PB +\\!/showpage{}def +...\" the following is from Ken Flowers -- it prevents dictionary overflows +\\!/tempdict 200 dict def tempdict begin +.fl \" prolog +.sy cat \\$1\" bring in postscript file +...\" the following line matches the tempdict above +\\!end % tempdict % +\\!PE +\\!. +.sp \\$2u \" move below the image +.. +.de pF +.ie \\*(f1 .ds f1 \\n(.f +.el .ie \\*(f2 .ds f2 \\n(.f +.el .ie \\*(f3 .ds f3 \\n(.f +.el .ie \\*(f4 .ds f4 \\n(.f +.el .tm ? font overflow +.ft \\$1 +.. +.de fP +.ie !\\*(f4 \{\ +. ft \\*(f4 +. ds f4\" +' br \} +.el .ie !\\*(f3 \{\ +. ft \\*(f3 +. ds f3\" +' br \} +.el .ie !\\*(f2 \{\ +. ft \\*(f2 +. ds f2\" +' br \} +.el .ie !\\*(f1 \{\ +. ft \\*(f1 +. ds f1\" +' br \} +.el .tm ? font underflow +.. +.ds f1\" +.ds f2\" +.ds f3\" +.ds f4\" +'\" t +.ta 8n 16n 24n 32n 40n 48n 56n 64n 72n +.TH "FBDESK" "1" +.SH "NAME" +fbdesk \(em Icons on the desktop +.SH "SYNOPSIS" +.PP +\fBfbdesk\fP +.SH "DESCRIPTION" +.PP +This manual page was written for the \fBDebian GNU/Linux\fP distribution +because the original program does not have a manual page. +.PP +\fBfbdesk\fP can display icons on the desktop in +your window manager, + +.SH "WEBSITE" +.PP +http://fluxbox.sourceforge.net/fbdesk/ +.SH "AUTHOR" +.PP +This manual page was written by Matt Hope dopey@debian.org for +the \fBDebian GNU/Linux\fP system (but may be used by others). +...\" created by instant / docbook-to-man, Wed 22 Jan 2003, 15:36 --- fbdesk-1.2.1.orig/debian/watch +++ fbdesk-1.2.1/debian/watch @@ -0,0 +1,3 @@ + +version=2 +http://fluxbox.sourceforge.net/fbdesk/ /download/fbdesk-([0-9\.]*).tar.gz debian uupdate -u