a6bb2f8c5e
Bump all consumers of ImageMagick ports after flavorizing them. Approved by: tcberner (mentor, implicit)
52 lines
1.5 KiB
Makefile
52 lines
1.5 KiB
Makefile
PORTNAME= cuttlefish
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 5
|
|
CATEGORIES= graphics geography
|
|
MASTER_SITES= http://www.caida.org/tools/visualization/cuttlefish/code/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Plots diurnal and geographical patterns of supplied data
|
|
WWW= https://www.caida.org/tools/visualization/cuttlefish/
|
|
|
|
RUN_DEPENDS+= p5-GD>=0:graphics/p5-GD \
|
|
gifsicle:graphics/gifsicle
|
|
|
|
USES= magick:6,run perl5 shebangfix
|
|
USE_PERL5= run
|
|
NO_BUILD= yes
|
|
SHEBANG_FILES= bin/cuttlefish.pl
|
|
|
|
IMAGES= caida_logo.gif caida_logo_gray.gif \
|
|
japan-water-okinawa.jpg japan-water.jpg \
|
|
world-day.jpg world-water.jpg
|
|
|
|
EXAMPLES= japan-traces-small.config japan-traces.config \
|
|
nyxem-hosts-both.config \
|
|
witty-combined-small.config witty-combined.config
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|../lib|../lib/cuttlefish|" \
|
|
${WRKSRC}/bin/cuttlefish.pl
|
|
.for f in ${EXAMPLES}
|
|
@${REINPLACE_CMD} -e "s|images|${PREFIX}/share/cuttlefish|" \
|
|
${WRKSRC}/configs/${f}
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/cuttlefish.pl ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/cuttlefish
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
.for f in Canvas.pm Control.pm Histogram.pm Image.pm Legend.pm Map.pm Util.pm
|
|
${INSTALL_DATA} ${WRKSRC}/lib/${f} ${STAGEDIR}${PREFIX}/lib/cuttlefish/${f}
|
|
.endfor
|
|
.for f in ${EXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/configs/${f} ${STAGEDIR}${EXAMPLESDIR}/${f}
|
|
.endfor
|
|
.for f in ${IMAGES}
|
|
${INSTALL_DATA} ${WRKSRC}/images/${f} ${STAGEDIR}${DATADIR}/${f}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|