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

24
graphics/feh/DESCR Normal file
View File

@@ -0,0 +1,24 @@
Feh is an advanced image viewer that uses imlib2. Here is a summary of
features:
* Simple image viewing.
* Multiple image viewing (slideshow).
* Multiple image viewing in multiwindows.
* Image viewing in fullscreen.
* Image list mode.
* Loadable/unloadable listing.
* Recursive file opening.
* Sorting of the filelist
* Saving/loading filelists
* Loading images via http.
* Reloading after delay.
* Montage creation.
* Collage creation.
* Index print creation.
* Thumbnail browser.
For viewing images, feh has the following features:
* Progressive loading.
* Dynamic zooming.
* Panning.
* Key or mouse control.
* Context menus.

36
graphics/feh/Makefile Normal file
View File

@@ -0,0 +1,36 @@
# $NetBSD: Makefile,v 1.60 2013/06/04 22:16:17 tron Exp $
#
DISTNAME= feh-2.9.1
PKGREVISION= 3
CATEGORIES= graphics
MASTER_SITES= http://feh.finalrewind.org/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= rh@NetBSD.org
HOMEPAGE= http://feh.finalrewind.org/
COMMENT= Advanced image viewer
LICENSE= mit
#GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --program-transform-name=s,cam,feh_cam,
USE_TOOLS+= bash:run perl:run gmake
REPLACE_BASH= cam/gen-cam-menu
REPLACE_PERL= scripts/*.pl cam/feh-cam
LDFLAGS.SunOS+= -lnsl -lsocket
BUILDLINK_API_DEPENDS.giblib+= giblib>=1.2.4
BUILDLINK_DEPMETHOD.libXt?= build
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../mk/jpeg.buildlink3.mk"
.include "../../devel/giblib/buildlink3.mk"
.include "../../www/curl/buildlink3.mk"
.include "../../x11/libXext/buildlink3.mk"
.include "../../x11/libXinerama/buildlink3.mk"
.include "../../x11/libXt/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

25
graphics/feh/PLIST Normal file
View File

@@ -0,0 +1,25 @@
@comment $NetBSD: PLIST,v 1.9 2013/03/15 18:43:16 drochner Exp $
bin/feh
bin/feh-cam
bin/gen-cam-menu
man/man1/feh-cam.1
man/man1/feh.1
man/man1/gen-cam-menu.1
share/applications/feh.desktop
share/doc/feh/AUTHORS
share/doc/feh/ChangeLog
share/doc/feh/README
share/doc/feh/TODO
share/doc/feh/examples/buttons
share/doc/feh/examples/keys
share/doc/feh/examples/themes
share/feh/fonts/black.style
share/feh/fonts/menu.style
share/feh/fonts/yudit.ttf
share/feh/images/logo.svg
share/feh/images/menubg_aluminium.png
share/feh/images/menubg_aqua.png
share/feh/images/menubg_black.png
share/feh/images/menubg_brushed.png
share/feh/images/menubg_default.png
share/feh/images/menubg_sky.png

8
graphics/feh/distinfo Normal file
View File

@@ -0,0 +1,8 @@
$NetBSD: distinfo,v 1.27 2013/03/15 18:43:16 drochner Exp $
SHA1 (feh-2.9.1.tar.bz2) = d6effb0bb3074315114b2590722fae9712a531ad
RMD160 (feh-2.9.1.tar.bz2) = 0933ca8eae557be8d70b4b8f703649a8b88d18ec
Size (feh-2.9.1.tar.bz2) = 2079016 bytes
SHA1 (patch-config.mk) = 7f99ff19820a62c8a7a9d3b0fb9c7f1a8151f6c5
SHA1 (patch-src_getopt.c) = 337fd15564c1d5b5596fe7d0d2f9bd6b0ca44ca7
SHA1 (patch-src_imlib_c) = 925d2536b69f99acc949cb6bd67422d001335492

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>