diff -u brother-cups-wrapper-laser1-1.0.2-1/debian/changelog brother-cups-wrapper-laser1-1.0.2-1/debian/changelog --- brother-cups-wrapper-laser1-1.0.2-1/debian/changelog +++ brother-cups-wrapper-laser1-1.0.2-1/debian/changelog @@ -1,3 +1,9 @@ +brother-cups-wrapper-laser1 (1.0.2-1-0ubuntu4) hardy; urgency=low + + * debian/rules: Add missing "" in PageSize fields of PPDs. + + -- Saïvann Carignan Mon, 21 Apr 2008 17:51:30 -0400 + brother-cups-wrapper-laser1 (1.0.2-1-0ubuntu3) hardy; urgency=low * debian/control: Drop transitional packages. diff -u brother-cups-wrapper-laser1-1.0.2-1/debian/rules brother-cups-wrapper-laser1-1.0.2-1/debian/rules --- brother-cups-wrapper-laser1-1.0.2-1/debian/rules +++ brother-cups-wrapper-laser1-1.0.2-1/debian/rules @@ -36,6 +36,20 @@ sed -i '/^lpadmin/d' debian/tmp/scripts/* sed -i s_'PPD=\"/usr/share/cups/model'_'PPD=\"/usr/share/ppd/Brother'_g debian/tmp/scripts/* + #Add missing "" in PageSize fields of PPDs. + sed -i s_'*PageSize Letter/Letter:'_'*PageSize Letter/Letter: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize Legal/Legal:'_'*PageSize Legal/Legal: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize Executive/Executive:'_'*PageSize Executive/Executive: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize A4/A4:'_'*PageSize A4/A4: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize A5/A5:'_'*PageSize A5/A5: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize A6/A6:'_'*PageSize A6/A6: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize Env10/Com-10:'_'*PageSize Env10/Com-10: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize EnvMonarch/Monarch:'_'*PageSize EnvMonarch/Monarch: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize EnvDL/DL:'_'*PageSize EnvDL/DL: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize EnvC5/C5:'_'*PageSize EnvC5/C5: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize EnvISOB5/B5:'_'*PageSize EnvISOB5/B5: ""'_ debian/tmp/scripts/* + sed -i s_'*PageSize EnvISOB6/B6:'_'*PageSize EnvISOB6/B6: ""'_ debian/tmp/scripts/* + chmod +x debian/tmp/scripts/* for i in `ls debian/tmp/scripts/` ; do \ ./debian/tmp/scripts/$$i ; \