mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
685f404e7b
sxiv is a light image viewer which as a few features : - Basic image operations, e.g. zooming, panning, rotating - Customizable key and mouse button mappings (in config.h) - Thumbnail mode: grid of selectable previews of all images - Ability to cache thumbnails for fast re-loading - Basic support for multi-frame images - Load all frames from GIF files and play GIF animations - Display image information in status bar PR: ports/185672 Submitted by: Rapenne <charles@bsd.zplay.eu>
28 lines
565 B
Makefile
28 lines
565 B
Makefile
# Created by: Charles RAPENNE <charles@bsd.zplay.eu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sxiv
|
|
PORTVERSION= 1.1.1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= https://github.com/muennich/sxiv/archive/
|
|
DISTNAME= v${PORTVERSION}
|
|
|
|
MAINTAINER= charles@bsd.zplay.eu
|
|
COMMENT= Lightweight image viewer
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libImlib2.so:${PORTSDIR}/graphics/imlib2
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/
|
|
USES= pkgconfig
|
|
USE_XORG= x11
|
|
|
|
PLIST_FILES= bin/sxiv \
|
|
man/man1/sxiv.1.gz \
|
|
share/sxiv/exec/image-info
|
|
PLIST_DIRS= share/sxiv/exec \
|
|
share/sxiv
|
|
|
|
.include <bsd.port.mk>
|