freebsd-ports/graphics/apngdis/Makefile
Rusmir Dusko b205b4e7bd - Change Makefile header
- Reset maintainer to ports@

Approved by:	pawel / wg (mentors, implicit)
2013-12-10 19:38:47 +00:00

47 lines
828 B
Makefile

# Created by: nemysis <nemysis@gmx.ch>
# $FreeBSD$
PORTNAME= apngdis
PORTVERSION= 2.5
DISTVERSIONSUFFIX=-src
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Deconstructs APNG files into individual frames
LICENSE= ZLIB
NO_WRKSUBDIR= yes
USE_DOS2UNIX= yes
USE_ZIP= yes
LDFLAGS+= -lz
PLIST_FILES= bin/${PORTNAME}
PORTDOCS= readme.txt
OPTIONS_DEFINE= DOCS STATIC
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSTATIC}
LDFLAGS+= -static
.endif
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} ${CPPFLAGS} ${PORTNAME}.c \
-o ${PORTNAME} ${LDFLAGS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif
.include <bsd.port.mk>