4.0.5
This commit is contained in:
commit
9b4678ed56
2
.gitignore
vendored
2
.gitignore
vendored
@ -81,3 +81,5 @@ foomatic-db-engine-4.0.3.tar.gz
|
||||
foomatic-filters-4.0.3.tar.gz
|
||||
foomatic-db-engine-4.0.4.tar.gz
|
||||
foomatic-filters-4.0.4.tar.gz
|
||||
/foomatic-db-engine-4.0.5.tar.gz
|
||||
/foomatic-filters-4.0.5.tar.gz
|
||||
|
@ -1,7 +1,7 @@
|
||||
diff -up foomatic-filters-4.0.4/pdf.c.mkstemp foomatic-4.0.4/foomatic-filters-4.0.4/pdf.c
|
||||
--- foomatic-filters-4.0.4/pdf.c.mkstemp 2010-02-15 13:57:40.000000000 +0100
|
||||
+++ foomatic-filters-4.0.4/pdf.c 2010-02-15 17:58:11.000000000 +0100
|
||||
@@ -112,13 +112,14 @@ static int pdf_extract_pages(char filena
|
||||
diff -up foomatic-filters-4.0.5/pdf.c.mkstemp foomatic-filters-4.0.5/pdf.c
|
||||
--- foomatic-filters-4.0.5/pdf.c.mkstemp 2010-08-10 12:08:04.000000000 +0200
|
||||
+++ foomatic-filters-4.0.5/pdf.c 2010-08-18 12:34:11.000000000 +0200
|
||||
@@ -110,13 +110,14 @@ static int pdf_extract_pages(char filena
|
||||
{
|
||||
char gscommand[4095];
|
||||
char filename_arg[PATH_MAX], first_arg[50], last_arg[50];
|
||||
@ -13,7 +13,7 @@ diff -up foomatic-filters-4.0.4/pdf.c.mkstemp foomatic-4.0.4/foomatic-filters-4.
|
||||
- mktemp(filename);
|
||||
- if (!filename[0])
|
||||
+ if ((fd = mkstemp(filename)) == -1)
|
||||
return 0;
|
||||
rip_die(EXIT_STARVED, "Unable to create temporary file!\n");
|
||||
+ close (fd);
|
||||
|
||||
snprintf(filename_arg, PATH_MAX, "-sOutputFile=%s", filename);
|
||||
|
@ -1,10 +1,10 @@
|
||||
%define enginever 4.0.4
|
||||
%define filtersver 4.0.4
|
||||
%define enginever 4.0.5
|
||||
%define filtersver 4.0.5
|
||||
|
||||
Summary: Database of printers and printer drivers
|
||||
Name: foomatic
|
||||
Version: %{enginever}
|
||||
Release: 12%{?dist}
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+
|
||||
Group: System Environment/Libraries
|
||||
|
||||
@ -30,9 +30,6 @@ Patch101: foomatic-db-engine-libdir.patch
|
||||
# Handle non-UTF-8 encodings in imported PPD files.
|
||||
Patch102: foomatic-bad-utf8.patch
|
||||
|
||||
# Fixed installation path for perl module.
|
||||
Patch103: foomatic-db-engine-perl.patch
|
||||
|
||||
## PATCHES FOR FOOMATIC-DB-HPIJS (PATCHES 201 TO 300)
|
||||
|
||||
Url: http://www.linuxprinting.org
|
||||
@ -96,7 +93,6 @@ pushd foomatic-db-engine-%{enginever}
|
||||
chmod a+x mkinstalldirs
|
||||
%patch101 -p1 -b .libdir
|
||||
%patch102 -p1
|
||||
%patch103 -p1 -b .perl
|
||||
aclocal
|
||||
autoconf
|
||||
popd
|
||||
@ -198,6 +194,10 @@ rm -fr %buildroot $RPM_BUILD_DIR/%{name}
|
||||
%{_mandir}/man1/foomatic-rip.1*
|
||||
|
||||
%changelog
|
||||
* Wed Aug 18 2010 Jiri Popelka <jpopelka@redhat.com> - 4.0.5-1
|
||||
- 4.0.5
|
||||
- fixing of installation path for perl module is no longer needed
|
||||
|
||||
* Tue Jun 22 2010 Tim Waugh <twaugh@redhat.com> - 4.0.4-12
|
||||
- Rebuilt for new device IDs.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user