29 lines
734 B
Makefile
29 lines
734 B
Makefile
|
# $OpenBSD: Makefile,v 1.1.1.1 2008/09/24 13:46:46 jasper Exp $
|
||
|
|
||
|
COMMENT = visualize your data in SVG format
|
||
|
|
||
|
DISTNAME = SVG-Graph-0.02
|
||
|
CATEGORIES = graphics
|
||
|
|
||
|
# Artistic License 2.0
|
||
|
PERMIT_PACKAGE_CDROM = Yes
|
||
|
PERMIT_PACKAGE_FTP = Yes
|
||
|
PERMIT_DISTFILES_CDROM = Yes
|
||
|
PERMIT_DISTFILES_FTP = Yes
|
||
|
|
||
|
MODULES = cpan
|
||
|
|
||
|
RUN_DEPENDS = ::devel/p5-Tree-DAG_Node \
|
||
|
::graphics/p5-SVG \
|
||
|
::math/p5-Math-Derivative \
|
||
|
::math/p5-Math-Spline \
|
||
|
::math/p5-Statistics-Descriptive \
|
||
|
|
||
|
post-install:
|
||
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/p5-SVG-Graph/data/
|
||
|
${INSTALL_DATA} ${WRKSRC}/eg/data/* \
|
||
|
${PREFIX}/share/examples/p5-SVG-Graph/data
|
||
|
${INSTALL_DATA} ${WRKSRC}/eg/*.pl ${PREFIX}/share/examples/p5-SVG-Graph/
|
||
|
|
||
|
.include <bsd.port.mk>
|