debian/0000775000000000000000000000000012155220133007162 5ustar debian/rules0000775000000000000000000000003612155217705010254 0ustar #!/usr/bin/make -f %: dh $@ debian/changelog0000664000000000000000000000155212155220124011037 0ustar pandora (0.7.1-0ubuntu3) saucy; urgency=low * debian/compat: Bump to 9. * debian/control: - Remove cdbs from Build-Depends. - Bump debhelper Build-Depends to (>= 9). - Bump Standards-Version to 3.9.4. - Add ${misc:Depends} to binary. * debian/patches/*: Convert to quilt. * debian/rules: Convert to dh sequencer. * debian/source/format: Indicate 3.0 (quilt) format. -- Logan Rosen Sun, 09 Jun 2013 19:49:47 -0400 pandora (0.7.1-0ubuntu2) gutsy; urgency=low * debian/control: Update maintainer fields according to debian- maintainer-field spec. -- Martin Pitt Wed, 15 Aug 2007 08:09:25 +0000 pandora (0.7.1-0ubuntu1) dapper; urgency=low * Initial release * Added patches/01_makefile.diff to patch the Makefile -- Hubert Figuiere Wed, 22 Feb 2006 12:57:17 -0500 debian/compat0000664000000000000000000000000212155212365010370 0ustar 9 debian/copyright0000664000000000000000000000221312155212217011117 0ustar This package was debianized by Neil Getker on Fri, 14 May 2004 12:01:30 -0400. Hubert Figuiere took over for Ubuntu Universe. It was downloaded from http://www.shallowsky.com/software/pandora/ Copyright (c) Akkana Peck Copyright (C) 1995 Spencer Kimball and Peter Mattis 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 systems, the complete text of the GNU General Public License can be found in the file /usr/share/common-licenses/GPL-2' debian/source/0000775000000000000000000000000012155220133010462 5ustar debian/source/format0000664000000000000000000000001412155212223011671 0ustar 3.0 (quilt) debian/control0000664000000000000000000000112612155212326010572 0ustar Source: pandora Section: graphics Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Hubert Figuiere Build-Depends: debhelper (>= 9), libgimp2.0-dev Standards-Version: 3.9.4 Homepage: http://www.shallowsky.com/software/pandora/ Package: pandora Architecture: any Depends: ${misc:Depends}, gimp (>= 2.0) Description: GIMP Plugin For Creating Panoramas GIMP Plugin that arranges images for creation of panoramic images. Pandora uses gradients, and overlays to blend the images, allowing a seamless appearance. debian/patches/0000775000000000000000000000000012155220133010611 5ustar debian/patches/series0000664000000000000000000000002212155212224012022 0ustar 01_makefile.patch debian/patches/01_makefile.patch0000664000000000000000000000537212155212224013720 0ustar --- a/Makefile +++ b/Makefile @@ -1,72 +1,20 @@ # Makefile for pandora panorama gimp plugin -# This tries to build pandora for every version of GIMP installed. -# Unfortunately GIMP doesn't have any standard way of doing that, -# so Pandora has to probe for all these possible versions. - -# But starting with GIMP 2.2, it can't do that probe, because -# all possible versions have the same name, gimptool-2.0, even -# if they're really 2.2 or 2.3. See bug 310565; maybe this will -# be solved eventually. Meanwhile, you can only install to whichever -# GIMP comes first in your path. - -GIMP_1_2_DIR=${HOME}/.gimp-1.2/plug-ins -GIMP_2_0_DIR=${HOME}/.gimp-2.0/plug-ins -GIMP_2_2_DIR=${HOME}/.gimp-2.2/plug-ins -GIMP_2_3_DIR=${HOME}/.gimp-2.3/plug-ins -GIMP_2_4_DIR=${HOME}/.gimp-2.4/plug-ins - -GIMPTOOL_1_2=$(shell which gimptool-1.2) -GIMPTOOL_2_0=$(shell which gimptool-2.0) -GIMPTOOL_2_2=$(shell which gimptool-2.2) -GIMPTOOL_2_3=$(shell which gimptool-2.3) +# Heavily hackde for .deb packaging # We don't need C99, but gcc 3.3 forces it by default, so we don't # see errors that might kill other people's builds. Force C89: -export CFLAGS=-std=c89 +export CFLAGS=-std=c99 # Most people will want make install, but this dummy target is for # people who don't want a makefile to install anything unless asked. build: - @echo Type make install to build and install the plugin. - @echo I will try to install it for every version of GIMP - @echo you have installed. + gimptool-2.0 --build pandora_match.c + gimptool-2.0 --build pandora_gen.c install: - if test -x "${GIMPTOOL_2_0}"; then make install-2.0; fi - if test -x "${GIMPTOOL_1_2}"; then make ${GIMP_1_2_DIR}/pandora_gen; fi - -# pandora-match is experimental and not very useful yet. -# Most people probably shouldn't bother. -debug-all: - if test -x "${GIMPTOOL_1_2}"; then make debug-1.2; fi - if test -x "${GIMPTOOL_2_3}"; then make debug-2.3; fi - -install-2.0: - gimptool-2.0 --install-strip pandora_gen.c - -install-1.2: ${GIMP_1_2_DIR}/pandora_gen - -debug-2.3: ${GIMP_2_3_DIR}/pandora_gen ${GIMP_2_3_DIR}/pandora_match - -debug-1.2: ${GIMP_1_2_DIR}/pandora_gen ${GIMP_1_2_DIR}/pandora_match - -# pandora_gen stuff - -${GIMP_1_2_DIR}/pandora_gen: pandora_gen.c - mkdir -p ${GIMP_1_2_DIR} - gimptool-1.2 --install-strip pandora_gen.c - - -# pandora_match stuff - -${GIMP_1_2_DIR}/pandora_match: pandora_match.c - mkdir -p ${GIMP_1_2_DIR} - gimptool-1.2 --install-strip pandora_match.c - -${GIMP_2_0_DIR}/pandora_match: pandora_match.c - mkdir -p ${GIMP_2_0_DIR} - gimptool-2.0 --install-strip pandora_match.c + install -D -o 0 -g 0 pandora_gen $(DESTDIR)/usr/lib/gimp/2.0/plug-ins/pandora_gen + install -D -o 0 -g 0 pandora_match $(DESTDIR)/usr/lib/gimp/2.0/plug-ins/pandora_match clean: rm -f pandora_match pandora_gen *.o