--- imageinfo-0.04.orig/debian/compat +++ imageinfo-0.04/debian/compat @@ -0,0 +1 @@ +5 --- imageinfo-0.04.orig/debian/docs +++ imageinfo-0.04/debian/docs @@ -0,0 +1 @@ +README --- imageinfo-0.04.orig/debian/copyright +++ imageinfo-0.04/debian/copyright @@ -0,0 +1,43 @@ +This package was debianized by Brendt Wohlberg on +Fri, 21 Apr 2006 15:24:00 -0600. + +It was downloaded from: http://www.wohlberg.net/public/software/photo/imageinfo/ + +Upstream author: Brendt Wohlberg + +This software is copyright (C) 2003-2007 Brendt Wohlberg, except +for files md5.h and md5.c, which are copyright (C) 1999, 2002 +Aladdin Enterprises. All rights reserved. + +You are free to distribute this software under the terms of +the GNU General Public License either version 2 of the License, +or (at your option) any later version. Further license +information follows. + +License (except for files md5.h and md5.c): + + This software is made available under the terms of the GNU General + Public License, the complete text of which may usually be found in + `/usr/share/common-licenses/GPL-2' on a Debian system. + +License for files md5.h and md5.c: + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + L. Peter Deutsch + ghost@aladdin.com + --- imageinfo-0.04.orig/debian/rules +++ imageinfo-0.04/debian/rules @@ -0,0 +1,65 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + + +config.status: configure + dh_testdir + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + dh_clean + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/imageinfo INSTALLRPMTOOL=0 + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installman + dh_link + 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 --- imageinfo-0.04.orig/debian/changelog +++ imageinfo-0.04/debian/changelog @@ -0,0 +1,43 @@ +imageinfo (0.04-0ubuntu7) precise; urgency=low + + * Rebuild for imagemagick4 transition + * debian/control: + - Replace libmagick9-dev with libmagickcore-dev + + -- Michael Terry Fri, 18 Nov 2011 11:57:31 -0500 + +imageinfo (0.04-0ubuntu6) maverick; urgency=low + + * No changes upload for libmagick2 -> libmagick3 transition + + -- Fabrice Coutadeur Wed, 21 Jul 2010 21:09:58 +0200 + +imageinfo (0.04-0ubuntu5) karmic; urgency=low + + * Fix up clean target to remove generated Makefile. + + -- Steve Langasek Tue, 08 Sep 2009 08:37:26 +0000 + +imageinfo (0.04-0ubuntu4) karmic; urgency=low + + * No-change rebuild against libmagickcore2 + + -- Steve Langasek Tue, 08 Sep 2009 08:37:02 +0000 + +imageinfo (0.04-0ubuntu3) jaunty; urgency=low + + * Rebuild for libmagick10 -> libmagickcore1 transition + + -- Fabrice Coutadeur Tue, 24 Mar 2009 21:23:05 +0000 + +imageinfo (0.04-0ubuntu2) hardy; urgency=low + + * Rebuild for libmagick9 -> libmagick10 transition. + + -- Luca Falavigna Wed, 27 Feb 2008 20:25:06 +0100 + +imageinfo (0.04-0ubuntu1) gutsy; urgency=low + + * Initial Release. + + -- Brendt Wohlberg Mon, 16 Jul 2007 22:35:00 -0600 --- imageinfo-0.04.orig/debian/dirs +++ imageinfo-0.04/debian/dirs @@ -0,0 +1 @@ +usr/bin --- imageinfo-0.04.orig/debian/control +++ imageinfo-0.04/debian/control @@ -0,0 +1,19 @@ +Source: imageinfo +Section: graphics +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Brendt Wohlberg +Build-Depends: debhelper (>= 5.0.0), autotools-dev, libpopt-dev, libmagickcore-dev +Standards-Version: 3.7.2 + +Package: imageinfo +Architecture: any +Depends: ${shlibs:Depends} +Description: Displays selected image attributes + imageinfo prints image attributes (e.g. format, geometry) selected via + command line options. It is similar in function to the ImageMagick + "identify" utility, but provides some additional attributes (such as + details of embedded ICC profiles), and is more convenient for use within + a script since the command line selection of specific attributes avoids + unnecessary computation and allows easier parsing of the result. +