Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-config.mk,v 1.2 2012/05/01 14:58:47 gls Exp $
Fix man pages installation path
--- config.mk.orig 2012-03-25 11:16:59.000000000 +0000
+++ config.mk
@@ -6,7 +6,7 @@ PREFIX ?= /usr/local
# Directories for manuals, executables, docs, data, etc.
main_dir = ${DESTDIR}${PREFIX}
-man_dir = ${main_dir}/share/man
+man_dir = ${main_dir}/man
bin_dir = ${main_dir}/bin
doc_dir = ${main_dir}/share/doc/feh
image_dir = ${main_dir}/share/feh/images

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-src_getopt.c,v 1.1 2011/05/25 19:44:27 gls Exp $
--- src/getopt.c.orig 2011-05-19 20:36:13.000000000 +0000
+++ src/getopt.c
@@ -36,6 +36,7 @@
#endif
#include <stdio.h>
+#include <string.h>
/* Comment out all this code if we are using the GNU C Library, and are not
actually compiling the library itself. This code is part of the GNU C

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-src_imlib_c,v 1.1 2012/06/23 19:58:51 dholland Exp $
Use standard headers. (limits.h required on Solaris)
--- src/imlib.c~ 2012-03-25 11:16:59.000000000 +0000
+++ src/imlib.c
@@ -34,6 +34,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
+#include <limits.h>
#ifdef HAVE_LIBCURL
#include <curl/curl.h>