blob: c6bf98ecb60b172db248632e74b487be74faaf91 (
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
28
29
30
31
32
|
# New ports collection makefile for: tiff2png
# Date created: Tue 04 Jul 2000
# Whom: will
#
# $FreeBSD$
#
PORTNAME= tiff2png
PORTVERSION= 0.91
PORTEPOCH= 1
CATEGORIES= graphics
MASTER_SITES= http://www.libpng.org/pub/png/src/ \
ftp://swrinde.nde.swri.edu/pub/png/applications/
MAINTAINER= ports@FreeBSD.org
PORTCOMMENT= Converts TIFF images to PNG format
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \
png.5:${PORTSDIR}/graphics/png
MAKEFILE= Makefile.unx
ALL_TARGET= tiff2png
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/tiff2png ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>
|