146eade1b8
* Release v3.7 * Use compact representation instead of key-value pairs for common EXIF data (only applies when compiling feh with exif=1) * Add --window-id <windowid> option (draw to an existing window) * Add --zoom-step <percent> option (specify zoom step size) * Pass gopher:// and gophers:// URLs to libcurl * Fix --reload / --auto-reload reloading the wrong directory when using --start-at and no file arguments or filelists have been specified * Fix Ctrl+key causing unintended behaviour when controlling feh via stdin * Fix high CPU usage when closing stdin after starting feh from a terminal Mon, 25 Jan 2021 17:46:57 +0100 Daniel Friesel <derf+feh@finalrewind.org>
40 lines
1 KiB
Makefile
40 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.114 2021/05/13 10:11:38 nia Exp $
|
|
|
|
DISTNAME= feh-3.7
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= https://feh.finalrewind.org/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://feh.finalrewind.org/
|
|
COMMENT= Imlib2 based image viewer
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= c99
|
|
|
|
USE_TOOLS+= gmake
|
|
|
|
CFLAGS+= -DHAVE_STRING_H=1
|
|
|
|
# for alphasort(3)
|
|
CFLAGS.NetBSD+= -D_NETBSD_SOURCE
|
|
|
|
# for undefined reference error from strverscmp(3)
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if ${OPSYS} != "Linux"
|
|
BUILD_MAKE_FLAGS+= verscmp=0
|
|
.endif
|
|
|
|
LDFLAGS.SunOS+= -lnsl -lsocket
|
|
|
|
BUILDLINK_DEPMETHOD.libXt?= build
|
|
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../graphics/imlib2/buildlink3.mk"
|
|
.include "../../graphics/png/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"
|