Update to foomatic-filters-4.0.5.
This commit is contained in:
parent
9b317158b3
commit
54cc9a222d
@ -1,9 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.19 2010/07/30 10:21:13 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.20 2010/08/22 06:56:25 ajacoutot Exp $
|
||||
|
||||
COMMENT= Foomatic PPD print filters
|
||||
|
||||
DISTNAME= foomatic-filters-4.0.4
|
||||
REVISION= 5
|
||||
DISTNAME= foomatic-filters-4.0.5
|
||||
CATEGORIES= print
|
||||
|
||||
HOMEPAGE= http://www.linuxfoundation.org/en/OpenPrinting/Database/Foomatic
|
||||
@ -23,9 +22,12 @@ MASTER_SITES= http://www.linuxprinting.org/download/foomatic/ \
|
||||
http://www.linuxprinting.org/download/foomatic/oldstuff/ \
|
||||
http://www.openprinting.org/download/foomatic/oldstuff/
|
||||
|
||||
BUILD_DEPENDS= ${MODGNU_AUTOMAKE_DEPENDS}
|
||||
|
||||
RUN_DEPENDS= ::print/ghostscript/gnu \
|
||||
::print/a2ps
|
||||
|
||||
AUTOMAKE_VERSION=1.10
|
||||
AUTOCONF_VERSION=2.61
|
||||
|
||||
INSTALL_TARGET= install-main install-cups
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (foomatic-filters-4.0.4.tar.gz) = 9n/Hk+6NTQdsZnHW5qcjZw==
|
||||
RMD160 (foomatic-filters-4.0.4.tar.gz) = O2UiiMC9egRgDLkftgyYiThzQng=
|
||||
SHA1 (foomatic-filters-4.0.4.tar.gz) = 0LM1dz9QwRIyVLk7sNjvdRGvLVA=
|
||||
SHA256 (foomatic-filters-4.0.4.tar.gz) = i3lXTidmqlcOvoZJ1J6XLg7ou1pxzmYYrBs8VmnPexg=
|
||||
SIZE (foomatic-filters-4.0.4.tar.gz) = 241279
|
||||
MD5 (foomatic-filters-4.0.5.tar.gz) = /Znaw6NoB6R/+k+esVwbBw==
|
||||
RMD160 (foomatic-filters-4.0.5.tar.gz) = cGXeN+OK+LUtvfHqQEtiDThuAbU=
|
||||
SHA1 (foomatic-filters-4.0.5.tar.gz) = E0WIDzuJJCsKx/rh43UL8hVBMPQ=
|
||||
SHA256 (foomatic-filters-4.0.5.tar.gz) = 2vo5zVqd6U21mqzQXwzLxOujYtFjNBnz3DxxJsg8EDY=
|
||||
SIZE (foomatic-filters-4.0.5.tar.gz) = 243239
|
||||
|
@ -1,8 +1,8 @@
|
||||
$OpenBSD: patch-configure_ac,v 1.1 2010/04/18 09:04:36 ajacoutot Exp $
|
||||
--- configure.ac.orig Sun Apr 18 10:56:08 2010
|
||||
+++ configure.ac Sun Apr 18 10:57:09 2010
|
||||
$OpenBSD: patch-configure_ac,v 1.2 2010/08/22 06:56:25 ajacoutot Exp $
|
||||
--- configure.ac.orig Tue Aug 10 12:08:03 2010
|
||||
+++ configure.ac Sun Aug 22 07:15:56 2010
|
||||
@@ -42,8 +42,8 @@ AC_FUNC_VPRINTF
|
||||
AC_CHECK_FUNCS([dup2 getcwd gethostname regcomp setenv strcasecmp strchr strcspn strdup strncasecmp strndup strrchr strstr strtol])
|
||||
AC_CHECK_FUNCS([dup2 getcwd gethostname regcomp setenv strcasecmp strchr strcspn strdup strncasecmp strndup strrchr strstr strcasestr strtol])
|
||||
|
||||
|
||||
-ETCSEARCHPATH=${prefix}/etc:/usr/etc:/usr/local/etc
|
||||
|
@ -1,15 +1,15 @@
|
||||
$OpenBSD: patch-util_c,v 1.1 2010/04/27 14:01:43 ajacoutot Exp $
|
||||
--- util.c.orig Mon Apr 19 10:28:13 2010
|
||||
+++ util.c Mon Apr 19 10:28:55 2010
|
||||
@@ -138,6 +138,7 @@ int omit_shellescapes(int c) { return strchr(shellesca
|
||||
int omit_specialchars(int c) { return omit_unprintables(c) || omit_shellescapes(c); }
|
||||
int omit_whitespace(int c) { return c == ' ' || c == '\t'; }
|
||||
$OpenBSD: patch-util_c,v 1.2 2010/08/22 06:56:25 ajacoutot Exp $
|
||||
--- util.c.orig Tue Aug 10 12:08:04 2010
|
||||
+++ util.c Sun Aug 22 07:15:52 2010
|
||||
@@ -162,6 +162,7 @@ strcasestr (const char *haystack, const char *needle)
|
||||
}
|
||||
#endif
|
||||
|
||||
+#ifndef __OpenBSD__
|
||||
size_t strlcpy(char *dest, const char *src, size_t size)
|
||||
{
|
||||
char *pdest = dest;
|
||||
@@ -177,6 +178,7 @@ size_t strlcat(char *dest, const char *src, size_t siz
|
||||
@@ -201,6 +202,7 @@ size_t strlcat(char *dest, const char *src, size_t siz
|
||||
|
||||
return len + (psrc - src);
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-util_h,v 1.1 2010/04/27 14:01:43 ajacoutot Exp $
|
||||
--- util.h.orig Mon Apr 19 10:29:24 2010
|
||||
+++ util.h Mon Apr 19 10:29:52 2010
|
||||
@@ -63,8 +63,10 @@ int omit_whitespace(int c);
|
||||
$OpenBSD: patch-util_h,v 1.2 2010/08/22 06:56:25 ajacoutot Exp $
|
||||
--- util.h.orig Tue Aug 10 12:08:04 2010
|
||||
+++ util.h Sun Aug 22 07:15:52 2010
|
||||
@@ -70,8 +70,10 @@ char * strcasestr (const char *haystack, const char *n
|
||||
/* Copy at most size-1 characters from src to dest
|
||||
dest will always be \0 terminated (unless size == 0)
|
||||
returns strlen(src) */
|
||||
|
Loading…
x
Reference in New Issue
Block a user