22e92995ab
- Pass maintainership to submitter Notes from Changelog: * Fixed $prefix in make install PR: 123134 Submitted by: Ganael Laplanche <ganael.laplanche@martymac.com>
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: tif22pnm
|
|
# Date created: Jan 7, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tif22pnm
|
|
PORTVERSION= 0.12
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.inf.bme.hu/~pts/
|
|
|
|
MAINTAINER= ganael.laplanche@martymac.com
|
|
COMMENT= Converts TIFF- sampled images to PNM image
|
|
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
|
|
tiff.4:${PORTSDIR}/graphics/tiff
|
|
BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkg-config
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-libtiff-ldir=${LOCALBASE}/lib \
|
|
--with-libtiff-idir=${LOCALBASE}/include
|
|
|
|
PLIST_FILES= bin/png22pnm bin/tif22pnm
|
|
|
|
TIF22PNM_SRCS= ptspnm.c minigimp.c miniglib.c ptstiff3.c tif22pnm.c
|
|
PNG2PNM_SRCS= png22pnm.c
|
|
|
|
do-build:
|
|
cd ${WRKSRC} \
|
|
&& ${CC} ${CFLAGS} -DNDEBUG -I${LOCALBASE}/include \
|
|
${TIF22PNM_SRCS} -o tif22pnm -L${LOCALBASE}/lib -ltiff \
|
|
&& ${CC} ${CFLAGS} -DNDEBUG `pkg-config libpng12 --cflags` \
|
|
${PNG2PNM_SRCS} -o png22pnm `pkg-config libpng12 --libs`
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/png22pnm ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tif22pnm ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|