debian/0000775000000000000000000000000012123243276007172 5ustar debian/rules0000775000000000000000000000173712123242076010257 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: dh_testdir $(MAKE) CFLAGS="$(CFLAGS)" touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp $(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs usr/bin cp pgmfindclip debian/pgmfindclip/usr/bin # Build architecture-independent files here. binary-indep: build install # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installdocs dh_installchangelogs dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-arch .PHONY: build clean binary-arch binary install debian/watch0000664000000000000000000000012012123242305010204 0ustar version=3 http://www.lallafa.de/bp/pgmfindclip.html files/pgmfindclip-(.+)\.tgz debian/changelog0000664000000000000000000000224112123243250011033 0ustar pgmfindclip (1.13-0.1ubuntu1) raring; urgency=low * debian/control: - Bump debhelper Build-Depends to >= 9. - Move homepage from Description to Homepage. - Add ${misc:Depends} to Depends for pgmfindclip binary. - Bump Standards-Version to 3.9.4. * debian/compat: Bump to 9. * debian/rules: - Make "$(MAKE) clean" not ignore all errors. - Replace dh_clean -k with dh_prep. - Add build-arch and build-indep targets. * debian/watch: Add. * debian/source/format: Indicate 3.0 (quilt) format. * debian/patches/Makefile-fix.patch: Put the diff between Ubuntu and upstream into a patch (puts $(CFLAGS) in gcc command in Makefile). -- Logan Rosen Sat, 23 Mar 2013 01:52:40 -0400 pgmfindclip (1.13-0.1) unstable; urgency=low * Rebuild for amd64. -- Christian Marillat Sun, 14 May 2006 14:31:57 +0200 pgmfindclip (1.13-0.0) unstable; urgency=low * New upstream release. -- Christian Marillat Mon, 21 Jul 2003 09:51:03 +0200 pgmfindclip (1.12-1) unstable; urgency=low * Initial Release. -- Christian Marillat Tue, 25 Feb 2003 16:28:00 +0100 debian/compat0000664000000000000000000000000212123241514010361 0ustar 9 debian/copyright0000664000000000000000000000105612123241363011122 0ustar This package was debianized by Christian Marillat on Tue, 25 Feb 2003 16:28:00 +0100. It was downloaded from http://www.lallafa.de/bp/pgmfindclip.html Upstream Author: Christian Vogelgsang Copyright: 2002,2003 Christian Vogelgsang You should have received a copy of the GNU General Public License with the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. debian/source/0000775000000000000000000000000012123243276010472 5ustar debian/source/format0000664000000000000000000000001412123242632011673 0ustar 3.0 (quilt) debian/control0000664000000000000000000000131112123241760010565 0ustar Source: pgmfindclip Section: graphics Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Christian Marillat Bugs: mailto:marillat@debian.org Standards-Version: 3.9.4 Build-Depends: debhelper (>= 9) Homepage: http://www.lallafa.de/bp/pgmfindclip.html Package: pgmfindclip Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: automatically find a clipping border for a sequence of pgm images This tool tries to find a suitable clipping border for a series of gray images. It is very useful to automatically extract clipping values for transcoding a movie if the source frame is encoded with black bars. debian/patches/0000775000000000000000000000000012123243276010621 5ustar debian/patches/series0000664000000000000000000000002312123242701012021 0ustar Makefile-fix.patch debian/patches/Makefile-fix.patch0000664000000000000000000000072512123243171014141 0ustar Description: add $(CFLAGS) to gcc This patch replaces "-Wall" with "$(CFLAGS)" in the gcc command in the Makefile so that debian/rules can dynamically set the flags. Author: Logan Rosen Forwarded: no Last-Update: 2013-03-23 --- pgmfindclip-1.13.orig/Makefile +++ pgmfindclip-1.13/Makefile @@ -1,5 +1,5 @@ pgmfindclip: pgmfindclip.c - gcc -Wall -o pgmfindclip pgmfindclip.c + gcc $(CFLAGS) -o pgmfindclip pgmfindclip.c clean: -rm pgmfindclip