aboutsummaryrefslogtreecommitdiff
path: root/graphics/visprint/Makefile
blob: 072655b06f99e462d0dfdd1c74d997ff06480895 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
PORTNAME=	visprint
PORTVERSION=	2.1
PORTREVISION=	4
CATEGORIES=	graphics
MASTER_SITES=	http://www.tastyrabbit.net/visprint/download/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Creates fractal fingerprint images based on any data
WWW=		https://www.tastyrabbit.net/visprint/

LIB_DEPENDS=	libpng.so:graphics/png

CFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib -lpng

PLIST_FILES=	bin/visprint share/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}/share/man/man1

.include <bsd.port.mk>