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 wrap: on
line diff
--- 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 <meillo@marmaro.de>  Sat, 14 Jun 2008 18:12:24 +0200
+ -- markus schnalke <meillo@marmaro.de>  Sun, 15 Jun 2008 15:58:54 +0200
 
--- 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.
--- 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 <meillo@marmaro.de>
-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 <meillo@marmaro.de>
-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
--- 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