mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
042afb8649
of each port on bento and for recent fixes. Unfortunately at some point I got confused and switched to the wrong list :-) As a result I picked up a number of ports that were fixed a while ago. Sorry for the false alarm, maintainers. Pointy hat to: kris
36 lines
998 B
Makefile
36 lines
998 B
Makefile
# New ports collection makefile for: ppmtoTbmp
|
|
# Date created: 30th May 2001
|
|
# Whom: Jose Marques <noway@nohow.demon.co.uk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ppmtoTbmp
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= palm graphics
|
|
MASTER_SITES= http://www.isaac.cs.berkeley.edu/pilot/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PPM to Pilot bitmap converter
|
|
|
|
LIB_DEPENDS= netpbm.1:${PORTSDIR}/graphics/netpbm
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|^CFLAGS =.*|CFLAGS += -I${LOCALBASE}/include|g; \
|
|
s|^LDLIBS =|LDLIBS = -L${LOCALBASE}/lib|g" ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e '/^#include "ppmcmap.h"/d' ${WRKSRC}/ppmtoTbmp.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ppmtoTbmp ${WRKSRC}/Tbmptopnm \
|
|
${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/ppmtoTbmp
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/ppmtoTbmp
|
|
.endif
|
|
${MKDIR} ${PREFIX}/share/ppmtoTbmp
|
|
${INSTALL_DATA} ${WRKSRC}/q?.map ${PREFIX}/share/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|