PR: 224273 Submitted by: Dmitri Goutnik <dg@syrec.org> Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D13513
31 lines
615 B
Makefile
31 lines
615 B
Makefile
# Created by: Solène RAPENNE <solene@bsd.zplay.eu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sxiv
|
|
PORTVERSION= 24
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= solene@bsd.zplay.eu
|
|
COMMENT= Lightweight image viewer
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libexif.so:graphics/libexif \
|
|
libgif.so:graphics/giflib \
|
|
libImlib2.so:graphics/imlib2
|
|
|
|
USES= gmake localbase:ldflags pkgconfig
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= muennich
|
|
USE_XORG= x11 xft
|
|
|
|
PLIST_FILES= bin/sxiv \
|
|
man/man1/sxiv.1.gz \
|
|
share/sxiv/exec/image-info \
|
|
share/sxiv/exec/key-handler
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sxiv
|
|
|
|
.include <bsd.port.mk>
|