--- posterazor-1.5.1.orig/debian/watch +++ posterazor-1.5.1/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://sf.net/posterazor/PosteRazor-(.*)-Source\.zip --- posterazor-1.5.1.orig/debian/copyright +++ posterazor-1.5.1/debian/copyright @@ -0,0 +1,121 @@ +This package was debianized by Simrun Basuita on +Tue, 22 Jul 2008 09:50:18 +0100. + +It was downloaded from + +Upstream Authors: + + Maintainer: + Alessandro Portale + + Translators: + French: Martin Loyer + Polish: Grzegorz Wacikowski + Italian: Stefano Nosei + Dutch: Erik Wijkamp + Spanish: Cristobal (from Hispanicoweb.net) + Brazilian Portuguese: Ederson Gomes dos Santos + +Copyright: + + Copyright (C) 2005-2008 by Alessandro Portale + +License: + + 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 3 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of version 3 of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-3'. + +The Debian packaging is (C) 2008, Simrun Basuita +and is licensed under the GPL, see above. + +Various files have different copyright holders and/or licenses: + +# Fl Native File Chooser ###################################################### + +src/thirdparty/Fl_Native_File_Chooser/Fl_Native_File_Chooser_MAC.cxx +src/thirdparty/Fl_Native_File_Chooser/Fl_Native_File_Chooser.cxx +src/thirdparty/Fl_Native_File_Chooser/FL/Fl_Native_File_Chooser_MAC.H +src/thirdparty/Fl_Native_File_Chooser/FL/Fl_Native_File_Chooser_WIN32.H +src/thirdparty/Fl_Native_File_Chooser/FL/Fl_Native_File_Chooser.H +src/thirdparty/Fl_Native_File_Chooser/Fl_Native_File_Chooser_WIN32.cxx + Copyright 2004 by Greg Ercolano + +src/thirdparty/Fl_Native_File_Chooser/FL/Fl_Native_File_Chooser_FLTK.H +src/thirdparty/Fl_Native_File_Chooser/Fl_Native_File_Chooser_FLTK.cxx + Copyright 2005 by Nathan Vander Wilt + + Fl_Native_File_Chooser License + January 25, 2005 + +The Fl_Native_File_Chooser library and included programs are provided under the +terms of the GNU Library General Public License (LGPL) with the following +exceptions: + + 1. Modifications to the Fl_Native_File_Chooser configure script, + config header file, and makefiles by themselves to support + a specific platform do not constitute a modified or derivative + work. + + The authors do request that such modifications be contributed + to the Fl_Native_File_Chooser project - send all contributions + to "erco [at] seriss [dot] com". + + 2. Widgets that are subclassed from Fl_Native_File_Chooser + widgets do not constitute a derivative work. + + 3. Static linking of applications and widgets to the + Fl_Native_File_Chooser library does not constitute a derivative + work and does not require the author to provide source code + for the application or widget, use the shared Fl_Native_File_Chooser + libraries, or link their applications or widgets against a + user-supplied version of Fl_Native_File_Chooser. + + If you link the application or widget to a modified version + of Fl_Native_File_Chooser, then the changes to + Fl_Native_File_Chooser must be provided under the terms of + the LGPL in sections 1, 2, and 4. + + 4. You do not have to provide a copy of the Fl_Native_File_Chooser + license with programs that are linked to the Fl_Native_File_Chooser + library, nor do you have to identify the Fl_Native_File_Chooser + license in your program or documentation as required by + section 6 of the LGPL. + + However, programs must still identify their use of + Fl_Native_File_Chooser. The following example statement can + be included in user documentation to satisfy this requirement: + + [program/widget] is based in part on the work of the + Fl_Native_File_Chooser project + (http://seriss.com/people/erco/fltk/Fl_Native_File_Chooser/) + + This program is free software; you can redistribute it and/or modify + it under the terms of version 2 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 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 Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of version 2 of the GNU Library General +Public License can be found in `/usr/share/common-licenses/LGPL-2'. --- posterazor-1.5.1.orig/debian/docs +++ posterazor-1.5.1/debian/docs @@ -0,0 +1 @@ +README --- posterazor-1.5.1.orig/debian/rules +++ posterazor-1.5.1/debian/rules @@ -0,0 +1,64 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +configure: configure-stamp +configure-stamp: + dh_testdir + + mkdir $(CURDIR)/src/build + cd $(CURDIR)/src/build && cmake .. + + touch configure-stamp + + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + + $(MAKE) --directory=$(CURDIR)/src/build + + docbook2x-man $(CURDIR)/debian/PosteRazor.1.docbook + + touch $@ + +clean: clean-source +clean-source: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + [ ! -d $(CURDIR)/src/build ] || rm -rf $(CURDIR)/src/build + [ ! -f $(CURDIR)/PosteRazor.1 ] || rm -f $(CURDIR)/PosteRazor.1 + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + + dh_installdirs + + cp $(CURDIR)/src/build/PosteRazor $(CURDIR)/debian/posterazor/usr/bin/ + cp $(CURDIR)/debian/posterazor.desktop $(CURDIR)/debian/posterazor/usr/share/applications/ + cp $(CURDIR)/src/PosteRazor.xpm $(CURDIR)/debian/posterazor/usr/share/pixmaps/ + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs CHANGES + dh_installdocs + dh_installman PosteRazor.1 + dh_desktop + dh_strip + dh_compress + dh_fixperms + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- posterazor-1.5.1.orig/debian/dirs +++ posterazor-1.5.1/debian/dirs @@ -0,0 +1,3 @@ +/usr/bin +/usr/share/applications +/usr/share/pixmaps --- posterazor-1.5.1.orig/debian/changelog +++ posterazor-1.5.1/debian/changelog @@ -0,0 +1,6 @@ +posterazor (1.5.1-0ubuntu1) intrepid; urgency=low + + * Initial release (LP: #233846) + + -- Simrun Basuita Tue, 22 Jul 2008 09:58:18 +0100 + --- posterazor-1.5.1.orig/debian/compat +++ posterazor-1.5.1/debian/compat @@ -0,0 +1 @@ +5 --- posterazor-1.5.1.orig/debian/control +++ posterazor-1.5.1/debian/control @@ -0,0 +1,18 @@ +Source: posterazor +Section: graphics +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Simrun Basuita +Build-Depends: debhelper (>= 5), libxpm-dev, libfltk1.1-dev (>= 1.1.7), + libfreeimage-dev, cmake, docbook, docbook2x +Standards-Version: 3.8.0 +Homepage: http://posterazor.sourceforge.net + +Package: posterazor +Architecture: any +Depends: ${shlibs:Depends} +Description: cuts raster images into multipage PDF documents + The PosteRazor cuts a raster image into pieces which can afterwards be printed + out and assembled to a poster. As input, the PosteRazor takes a raster image. + The resulting poster is saved as a multipage PDF document. An easy to use, + wizard like interface guides the user through 5 steps. --- posterazor-1.5.1.orig/debian/PosteRazor.1.docbook +++ posterazor-1.5.1/debian/PosteRazor.1.docbook @@ -0,0 +1,66 @@ + + + + + + Simrun + Basuita + DRebellion1@googlemail.com + + + 2008 + Simrun Basuita + + + + 2008-07-22 + + + + PosteRazor + 1 + + + PosteRazor + cuts raster images into multipage PDF documents + + + + PosteRazor + + + + + + + DESCRIPTION + + The PosteRazor cuts a raster image into pieces which can afterwards be + printed out and assembled to a poster. As input, the PosteRazor takes a + raster image. The resulting poster is saved as a multipage PDF document. An + easy to use, wizard like interface guides the user through 5 steps. + + + If no file is specified as a command line argument, the user will be + prompted for one. + + + + COPYRIGHT + + This manual page was written by Simrun Basuita + DRebellion1@googlemail.com for the + Ubuntu system (but may be used by others). + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU General Public License, + Version 2 or any later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in + /usr/share/common-licenses/GPL. + + + --- posterazor-1.5.1.orig/debian/posterazor.desktop +++ posterazor-1.5.1/debian/posterazor.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=PosteRazor +Comment=Cuts a raster image into multipage PDF documents +TryExec=PosteRazor +Exec=PosteRazor %f +Terminal=false +Icon=PosteRazor +Categories=Graphics;