mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
23 lines
552 B
Makefile
23 lines
552 B
Makefile
# Created by: giffunip@asme.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ppm2fli
|
|
PORTVERSION= 2.1
|
|
CATEGORIES= multimedia graphics
|
|
MASTER_SITES= http://vento.pi.tu-berlin.de/ppm2fli/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Utilities to merge PPM files into animated FLI and backwards
|
|
|
|
pre-patch:
|
|
@${REINPLACE_CMD} -e 's|^C|#C|g ; \
|
|
s|gcc |\$${CC} |g' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
.for f in ppm2fli unflick
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${f}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|