debian/resize-gd-debian
changeset 1:69dc44a72af3
updated
author | meillo@marmaro.de |
---|---|
date | Sun, 15 Jun 2008 16:36:56 +0200 |
parents | 5fa0beba15d8 |
children | d13cced55e31 b153420a1169 |
files | changelog control copyright rules |
diffstat | 4 files changed, 16 insertions(+), 24 deletions(-) [+] |
line diff
1.1 --- a/changelog Sat Jun 14 19:19:02 2008 +0200 1.2 +++ b/changelog Sun Jun 15 16:36:56 2008 +0200 1.3 @@ -2,5 +2,5 @@ 1.4 1.5 * Initial release (Closes: #nnnn) 1.6 1.7 - -- markus schnalke <meillo@marmaro.de> Sat, 14 Jun 2008 18:12:24 +0200 1.8 + -- markus schnalke <meillo@marmaro.de> Sun, 15 Jun 2008 15:58:54 +0200 1.9
2.1 --- a/control Sat Jun 14 19:19:02 2008 +0200 2.2 +++ b/control Sun Jun 15 16:36:56 2008 +0200 2.3 @@ -8,7 +8,7 @@ 2.4 2.5 Package: resize-gd 2.6 Architecture: i386 2.7 -Depends: ${shlibs:Depends} 2.8 +Depends: libgd2-noxpm-dev (>= 2.0.33) | libgd2-xpm-dev (>= 2.0.33) 2.9 Description: resizes images using the gd-library 2.10 The program has two modes: 2.11 * aspect ratio of the images is preserved and only shrinking is done. Smaller 2.12 @@ -19,9 +19,9 @@ 2.13 All resizing is done in-place. 2.14 . 2.15 Only JPEG and PNG files are supported. The filetype is detected by the 2.16 - filename suffix which has to be either ‘.jpg’ or ‘.png’ (in lowercase 2.17 - letters). Unsupported files get skipped. 2.18 + filename suffix which has to be `.jpg', `.jpeg' or `.png'. Unsupported files 2.19 + get skipped. 2.20 . 2.21 - This program is meant to be a small(er) alternative to the mogrify -resize 2.22 + This program is meant to be a small(er) alternative to the `mogrify -resize' 2.23 command of ImageMagick. Mainly because ImageMagick has lots of dependencies, 2.24 while the GD-Library has less.
3.1 --- a/copyright Sat Jun 14 19:19:02 2008 +0200 3.2 +++ b/copyright Sun Jun 15 16:36:56 2008 +0200 3.3 @@ -1,11 +1,11 @@ 3.4 Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat 3.5 Debianized-By: markus schnalke <meillo@marmaro.de> 3.6 -Debianized-Date: Sat, 14 Jun 2008 18:16:40 +0200 3.7 +Debianized-Date: Sun, 15 Jun 2008 16:00:46 +0200 3.8 Original-Source: http://prog.marmaro.de/resize-gd 3.9 3.10 Files: * 3.11 Copyright: 2008 by markus schnalke <meillo@marmaro.de> 3.12 -License: MIT/X Consortium 3.13 +License: MIT 3.14 Permission is hereby granted, free of charge, to any person obtaining 3.15 a copy of this software and associated documentation files (the 3.16 "Software"), to deal in the Software without restriction, including
4.1 --- a/rules Sat Jun 14 19:19:02 2008 +0200 4.2 +++ b/rules Sun Jun 15 16:36:56 2008 +0200 4.3 @@ -1,18 +1,16 @@ 4.4 #!/usr/bin/make -f 4.5 4.6 +CFLAGS = -Wall -g 4.7 4.8 -#CFLAGS = -Wall -g 4.9 - 4.10 -#ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) 4.11 -#CFLAGS += -O0 4.12 -#else 4.13 -#CFLAGS += -O2 4.14 -#endif 4.15 +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) 4.16 + CFLAGS += -O0 4.17 +else 4.18 + CFLAGS += -O2 4.19 +endif 4.20 4.21 4.22 4.23 build: build-stamp 4.24 - 4.25 build-stamp: 4.26 dh_testdir 4.27 $(MAKE) 4.28 @@ -34,27 +32,21 @@ 4.29 dh_installdirs 4.30 $(MAKE) DESTDIR=$(CURDIR)/debian/resize-gd install PREFIX=/usr 4.31 4.32 + 4.33 binary: binary-arch binary-indep 4.34 binary-indep: 4.35 -# Build architecture-dependent files here. 4.36 binary-arch: build install 4.37 dh_testdir 4.38 dh_testroot 4.39 - dh_installchangelogs 4.40 dh_installdocs 4.41 - dh_installexamples 4.42 -# dh_install 4.43 + dh_installchangelogs ChangeLog 4.44 dh_installman 4.45 - dh_link 4.46 dh_strip 4.47 dh_compress 4.48 dh_fixperms 4.49 - dh_makeshlibs 4.50 - dh_installdeb 4.51 - dh_shlibdeps 4.52 dh_gencontrol 4.53 dh_md5sums 4.54 dh_builddeb 4.55 4.56 4.57 -.PHONY: build clean binary binary-arch binary-indep install 4.58 +.PHONY: build build-stamp clean install binary binary-arch binary-indep