mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
8e4afe7bb4
- Correct e-mail address in Makefile header - Handle missing stripping of installed binary PR: 192509 Submitted by: solene@bsd.zplay.eu (maintainer) Approved by: mentors (implicit)
32 lines
652 B
Makefile
32 lines
652 B
Makefile
# Created by: Solène RAPENNE <solene@bsd.zplay.eu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sxiv
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= https://github.com/muennich/sxiv/archive/
|
|
DISTNAME= v${PORTVERSION}
|
|
|
|
MAINTAINER= solene@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 \
|
|
share/sxiv/exec/key-handler
|
|
PLIST_DIRS= share/sxiv/exec \
|
|
share/sxiv
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sxiv
|
|
|
|
.include <bsd.port.mk>
|