mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
47 lines
951 B
Makefile
47 lines
951 B
Makefile
# Created by: Jeremy Norris <ishmael127@home.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= feh
|
|
PORTVERSION= 2.9.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://feh.finalrewind.org/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= uqs
|
|
|
|
MAINTAINER= zeising@FreeBSD.org
|
|
COMMENT= An image viewer that utilizes Imlib2
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \
|
|
giblib.1:${PORTSDIR}/graphics/giblib
|
|
|
|
USE_XORG= x11 xt xinerama
|
|
USES= gmake perl5
|
|
USE_PERL5= run
|
|
USE_BZIP2= yes
|
|
|
|
MAN1= feh.1 feh-cam.1 gen-cam-menu.1
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include -std=c99
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
MAKE_ENV+= LDFLAGS="${LDFLAGS}"
|
|
|
|
PORTDOCS= AUTHORS ChangeLog README TODO
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's/install-man install-doc/install-man/' \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|