# HG changeset patch # User meillo@marmaro.de # Date 1213540616 -7200 # Node ID 69dc44a72af3c73e321fb6ec86f0344dfc28bcfd # Parent 5fa0beba15d8687b013f1a6a429bebfcebf7a740 updated diff -r 5fa0beba15d8 -r 69dc44a72af3 changelog --- a/changelog Sat Jun 14 19:19:02 2008 +0200 +++ b/changelog Sun Jun 15 16:36:56 2008 +0200 @@ -2,5 +2,5 @@ * Initial release (Closes: #nnnn) - -- markus schnalke Sat, 14 Jun 2008 18:12:24 +0200 + -- markus schnalke Sun, 15 Jun 2008 15:58:54 +0200 diff -r 5fa0beba15d8 -r 69dc44a72af3 control --- a/control Sat Jun 14 19:19:02 2008 +0200 +++ b/control Sun Jun 15 16:36:56 2008 +0200 @@ -8,7 +8,7 @@ Package: resize-gd Architecture: i386 -Depends: ${shlibs:Depends} +Depends: libgd2-noxpm-dev (>= 2.0.33) | libgd2-xpm-dev (>= 2.0.33) Description: resizes images using the gd-library The program has two modes: * aspect ratio of the images is preserved and only shrinking is done. Smaller @@ -19,9 +19,9 @@ All resizing is done in-place. . Only JPEG and PNG files are supported. The filetype is detected by the - filename suffix which has to be either ‘.jpg’ or ‘.png’ (in lowercase - letters). Unsupported files get skipped. + filename suffix which has to be `.jpg', `.jpeg' or `.png'. Unsupported files + get skipped. . - This program is meant to be a small(er) alternative to the mogrify -resize + This program is meant to be a small(er) alternative to the `mogrify -resize' command of ImageMagick. Mainly because ImageMagick has lots of dependencies, while the GD-Library has less. diff -r 5fa0beba15d8 -r 69dc44a72af3 copyright --- a/copyright Sat Jun 14 19:19:02 2008 +0200 +++ b/copyright Sun Jun 15 16:36:56 2008 +0200 @@ -1,11 +1,11 @@ Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat Debianized-By: markus schnalke -Debianized-Date: Sat, 14 Jun 2008 18:16:40 +0200 +Debianized-Date: Sun, 15 Jun 2008 16:00:46 +0200 Original-Source: http://prog.marmaro.de/resize-gd Files: * Copyright: 2008 by markus schnalke -License: MIT/X Consortium +License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff -r 5fa0beba15d8 -r 69dc44a72af3 rules --- a/rules Sat Jun 14 19:19:02 2008 +0200 +++ b/rules Sun Jun 15 16:36:56 2008 +0200 @@ -1,18 +1,16 @@ #!/usr/bin/make -f +CFLAGS = -Wall -g -#CFLAGS = -Wall -g - -#ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) -#CFLAGS += -O0 -#else -#CFLAGS += -O2 -#endif +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif build: build-stamp - build-stamp: dh_testdir $(MAKE) @@ -34,27 +32,21 @@ dh_installdirs $(MAKE) DESTDIR=$(CURDIR)/debian/resize-gd install PREFIX=/usr + binary: binary-arch binary-indep binary-indep: -# Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot - dh_installchangelogs dh_installdocs - dh_installexamples -# dh_install + dh_installchangelogs ChangeLog dh_installman - dh_link dh_strip dh_compress dh_fixperms - dh_makeshlibs - dh_installdeb - dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb -.PHONY: build clean binary binary-arch binary-indep install +.PHONY: build build-stamp clean install binary binary-arch binary-indep