6c283f47a9
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/
35 lines
768 B
Makefile
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>
|