add tif22pnm 0.06
Converts TIFF- sampled images to PNM image
This commit is contained in:
parent
f98ceafb15
commit
11a219d683
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=72689
6 changed files with 38 additions and 0 deletions
|
@ -359,6 +359,7 @@
|
|||
SUBDIR += tgif
|
||||
SUBDIR += tgif-nls
|
||||
SUBDIR += threeDS
|
||||
SUBDIR += tif22pnm
|
||||
SUBDIR += tiff
|
||||
SUBDIR += tiff2png
|
||||
SUBDIR += tifmerge
|
||||
|
|
30
graphics/tif22pnm/Makefile
Normal file
30
graphics/tif22pnm/Makefile
Normal file
|
@ -0,0 +1,30 @@
|
|||
# ex:ts=8
|
||||
# Ports collection makefile for: tif22pnm
|
||||
# Date created: Jan 7, 2003
|
||||
# Whom: ijliao
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= tif22pnm
|
||||
PORTVERSION= 0.06
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.inf.bme.hu/~pts/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash2
|
||||
LIB_DEPENDS= tiff:${PORTSDIR}/graphics/tiff
|
||||
|
||||
USE_REINPLACE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-libtiff-ldir=${LOCALBASE}/lib \
|
||||
--with-libtiff-idir=${LOCALBASE}/include
|
||||
|
||||
do-build:
|
||||
@(cd ${WRKSRC} ; ${LOCALBASE}/bin/bash do.sh compile)
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/tif22pnm ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
1
graphics/tif22pnm/distinfo
Normal file
1
graphics/tif22pnm/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (tif22pnm-0.06.tar.gz) = b2ddae1e8aecd05a9f4276c4dc162a67
|
1
graphics/tif22pnm/pkg-comment
Normal file
1
graphics/tif22pnm/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Converts TIFF- sampled images to PNM image
|
4
graphics/tif22pnm/pkg-descr
Normal file
4
graphics/tif22pnm/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
tif22pnm is a commandline utility that converts TIFF- sampled images to PNM
|
||||
images, using the libtiff library, but not using NetPBM. It is similar to
|
||||
tifftopnm utility in the NetPBM distribution, but handles a wider range of
|
||||
TIFF files and is able to output the alpha channel as a PBM or PGM file.
|
1
graphics/tif22pnm/pkg-plist
Normal file
1
graphics/tif22pnm/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
bin/tif22pnm
|
Loading…
Reference in a new issue