a330f0ff1a
* Use DISTVERSION instead PORTVERSION * Remove custom do-install target PR: 227097 Reported by: lebarondemerde@privacychain.ch Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D15397
36 lines
694 B
Makefile
36 lines
694 B
Makefile
# Created by: Tobias Kortkamp <t@tobik.me>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= imv
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 3.0.0
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple image viewer
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= asciidoc:textproc/asciidoc
|
|
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreeimage.so:graphics/freeimage
|
|
TEST_DEPENDS= ${LOCALBASE}/lib/libcmocka.so:sysutils/cmocka
|
|
|
|
USES= desktop-file-utils localbase gmake
|
|
USE_SDL= sdl2 ttf2
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= eXeC64
|
|
|
|
ALL_TARGET= imv
|
|
TEST_TARGET= check
|
|
|
|
MAKE_ARGS= V=1
|
|
|
|
PLIST_FILES= bin/imv \
|
|
etc/imv_config \
|
|
man/man1/imv.1.gz \
|
|
man/man5/imv.5.gz \
|
|
share/applications/imv.desktop
|
|
|
|
.include <bsd.port.mk>
|