Author: naoliv Date: 2009-08-07 13:29:41 +0000 (Fri, 07 Aug 2009) New Revision: 3745
Modified: trunk/packages/dicom3tools/trunk/debian/README.Debian trunk/packages/dicom3tools/trunk/debian/copyright trunk/packages/dicom3tools/trunk/debian/rules Log: Removed commented dh_ commands (http://ftp-master.debian.org/REJECT-FAQ.html) Fixed optimization options in debian/rules Fixed lintian's I: pvrg-jpeg: copyright-with-old-dh-make-debian-copyright Wrapped README.Debian lines Modified: trunk/packages/dicom3tools/trunk/debian/README.Debian =================================================================== --- trunk/packages/dicom3tools/trunk/debian/README.Debian 2009-08-07 11:44:15 UTC (rev 3744) +++ trunk/packages/dicom3tools/trunk/debian/README.Debian 2009-08-07 13:29:41 UTC (rev 3745) @@ -6,8 +6,10 @@ See: http://www.dclunie.com/dicom3tools.html Package details: -The package is setup so that default Root UID is 0.0.0.0. This means that DICOM file created will be syntaxically correct, but will be refused by standard DICOM implementation -as this is not allowed as valid Root UID. You should either only use this package for validation, but not in a production site, where produced DICOM files are supposed to be sent -to the outside world. +The package is setup so that default Root UID is 0.0.0.0. This means that DICOM +file created will be syntaxically correct, but will be refused by standard DICOM +implementation as this is not allowed as valid Root UID. You should either only +use this package for validation, but not in a production site, where produced +DICOM files are supposed to be sent to the outside world. -- Mathieu Malaterre <[email protected]> Sun, 14 Dec 2008 17:28:00 +0100 Modified: trunk/packages/dicom3tools/trunk/debian/copyright =================================================================== --- trunk/packages/dicom3tools/trunk/debian/copyright 2009-08-07 11:44:15 UTC (rev 3744) +++ trunk/packages/dicom3tools/trunk/debian/copyright 2009-08-07 13:29:41 UTC (rev 3745) @@ -9,7 +9,7 @@ Copyright: - Copyright (c) 1993-2006, David A. Clunie DBA PixelMed Publishing. All rights reserved. + Copyright © 1993-2006, David A. Clunie DBA PixelMed Publishing. All rights reserved. License: @@ -32,7 +32,7 @@ found in `/usr/share/common-licenses/BSD'. -The Debian packaging is (C) 2008, Mathieu Malaterre <[email protected]> and +The Debian packaging is © 2008, Mathieu Malaterre <[email protected]> and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. Modified: trunk/packages/dicom3tools/trunk/debian/rules =================================================================== --- trunk/packages/dicom3tools/trunk/debian/rules 2009-08-07 11:44:15 UTC (rev 3744) +++ trunk/packages/dicom3tools/trunk/debian/rules 2009-08-07 13:29:41 UTC (rev 3745) @@ -21,9 +21,9 @@ CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - OPT_FLAGS = -O0 + CFLAGS += -O0 else - OPT_FLAGS = -O2 + CFLAGS += -O2 endif configure: configure-stamp @@ -42,7 +42,6 @@ # Add here commands to compile the package. $(MAKE) World "C_DEBUGFLAGS=$(CFLAGS)" "CPLUSPLUS_DEBUGFLAGS=$(CFLAGS)" - #docbook-to-man debian/dicom3tools.sgml > dicom3tools.1 touch $@ @@ -85,7 +84,7 @@ find $(CURDIR)/debian/dicom3tools/usr/share/man/man1 -type f -exec sed -i -e 's/\\n/\\/g' {} \; # hyphen-used-as-minus-sign #find $(CURDIR)/debian/dicom3tools/usr/share/man/man1 -type f -exec sed -i -e 's/-/\\-/g' {} \; - # Can use above -> manpage-has-bad-whatis-entry + # Can't use above -> manpage-has-bad-whatis-entry # Build architecture-independent files here. @@ -99,24 +98,11 @@ dh_installchangelogs CHANGES dh_installdocs dh_installexamples -# dh_install -# dh_installmenu -# dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_python -# dh_installinit -# dh_installcron -# dh_installinfo dh_installman dh_link dh_strip dh_compress dh_fixperms -# dh_perl -# dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit
