--- file-browser-applet-0.5.6.orig/debian/copyright +++ file-browser-applet-0.5.6/debian/copyright @@ -0,0 +1,32 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Debianized-By: Andrew Starr-Bochicchio on +Debianized-Date: Wed, 09 Apr 2008 15:38:30 -0400. +Original-Source: http://code.google.com/p/gnome-menu-file-browser-applet/ + +Upstream Author: Axel von Bertoldi + +Files: * +Copyright: (C) 2006-2008 Axel von Bertoldi +License: GPL-2+ + + 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 systems, the complete text of the GNU General + Public License can be found in the file "/usr/share/common-licenses/GPL" + +Files: debian/* +Copyright: (C) 2008 Andrew Starr-Bochicchio +License: GPL + See: `/usr/share/common-licenses/GPL' --- file-browser-applet-0.5.6.orig/debian/docs +++ file-browser-applet-0.5.6/debian/docs @@ -0,0 +1 @@ +README --- file-browser-applet-0.5.6.orig/debian/watch +++ file-browser-applet-0.5.6/debian/watch @@ -0,0 +1,4 @@ +# Compulsory line, this is a version 3 file +version=3 + +http://code.google.com/p/gnome-menu-file-browser-applet/ http://gnome-menu-file-browser-applet.googlecode.com/files/file-browser-applet-(.*)\.tar\.gz --- file-browser-applet-0.5.6.orig/debian/control +++ file-browser-applet-0.5.6/debian/control @@ -0,0 +1,15 @@ +Source: file-browser-applet +Section: gnome +Priority: optional +Maintainer: Andrew Starr-Bochicchio +Build-Depends: debhelper (>= 6), pkg-config, cmake (>= 2.4), libpanel-applet2-dev, libgnomevfs2-dev, libgnome-desktop-dev, libglade2-dev +Standards-Version: 3.8.0 +Homepage: http://code.google.com/p/gnome-menu-file-browser-applet/ + +Package: file-browser-applet +Architecture: any +Depends: ${shlibs:Depends}, libpanel-applet2-0, libgnomevfs2-0, libgnome-desktop-2, libglade2-0 +Description: browse and open files on your computer from the GNOME panel + An applet for the GNOME Panel that lets you browse and open files in your home + directory from your panel, without having to open a file manager. + --- file-browser-applet-0.5.6.orig/debian/changelog +++ file-browser-applet-0.5.6/debian/changelog @@ -0,0 +1,6 @@ +file-browser-applet (0.5.6-1) unstable; urgency=low + + * Initial release. (Closes: #484031) + + -- Andrew Starr-Bochicchio Sun, 01 Jun 2008 18:59:43 -0400 + --- file-browser-applet-0.5.6.orig/debian/compat +++ file-browser-applet-0.5.6/debian/compat @@ -0,0 +1 @@ +6 --- file-browser-applet-0.5.6.orig/debian/rules +++ file-browser-applet-0.5.6/debian/rules @@ -0,0 +1,66 @@ +#!/usr/bin/make -f + + + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + cmake . + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/file-browser-applet.sgml > file-browser-applet.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/file-browser-applet. + $(MAKE) DESTDIR=$(CURDIR)/debian/file-browser-applet install + + +# 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 HISTORY + dh_installdocs + dh_installman + dh_strip + 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 configure