freebsd-ports/graphics/visprint/Makefile
Stanislav Sedov 6c283f47a9 - Add port for graphics/visprint
Visprint makes fractal fingerprint png images based on the contents of any
file. The image will be different for almost every file with even slightly
different contents. Visprint uses the IFS fractal generation process,
pioneered by Michael Barnsley. It is a way to create images which are
self-similar to infinite depths. In other words, the picture is made up of
smaller versions of itself.

Author: Goiz "Samhain" <hackerbunny@tastyrabbit.net>
WWW:    http://www.tastyrabbit.net/visprint/
2006-11-11 16:12:32 +00:00

35 lines
768 B
Makefile

# New ports collection makefile for: visprint
# Date created: 11 November 2006
# Whom: stas
#
# $FreeBSD$
#
PORTNAME= visprint
PORTVERSION= 2.0
CATEGORIES= graphics
MASTER_SITES= http://www.tastyrabbit.net/visprint/download/
MAINTAINER= stas@FreeBSD.org
COMMENT= Creates fractal fingerprint images based on any data
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lpng
MANCOMPRESSED= yes
PLIST_FILES= bin/visprint
MAN1= visprint.1
do-build:
(cd ${WRKSRC} && ${CC} ${CFLAGS} -c visprint.c)
(cd ${WRKSRC} && ${CC} ${LDFLAGS} visprint.o -o visprint)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/visprint ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/visprint.1.gz ${PREFIX}/man/man1
.include <bsd.port.mk>