freebsd-ports/graphics/visprint/Makefile
Antoine Brodin f9df959029 - Stage support
- New LIB_DEPENDS syntax
2014-01-09 21:59:55 +00:00

28 lines
715 B
Makefile

# Created by: stas
# $FreeBSD$
PORTNAME= visprint
PORTVERSION= 2.1
PORTREVISION= 2
CATEGORIES= graphics
MASTER_SITES= http://www.tastyrabbit.net/visprint/download/
MAINTAINER= ports@FreeBSD.org
COMMENT= Creates fractal fingerprint images based on any data
LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lpng
PLIST_FILES= bin/visprint man/man1/visprint.1.gz
do-build:
(cd ${WRKSRC} && ${CC} ${CFLAGS} -c visprint.c)
(cd ${WRKSRC} && ${CC} ${LDFLAGS} visprint.o -o visprint)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/visprint ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/visprint.1.gz ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.mk>