mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
2f9fbc0fc4
PR: ports/69325 Submitted by: edwin
38 lines
817 B
Makefile
38 lines
817 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: jpgraph
|
|
# Date created: Oct 20, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jpgraph
|
|
PORTVERSION= 1.16
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://members.chello.se/jpgraph/jpgdownloads/
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= Draw both "quick and dirty" graphs with a minimum of code
|
|
|
|
NO_BUILD= yes
|
|
USE_PHP= gd
|
|
|
|
NO_CDROM= "The free version cannot be used in a commercial context"
|
|
|
|
post-extract:
|
|
${RM} -rf ${WRKSRC}/src/Examples/CVS
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}
|
|
${CP} ${WRKSRC}/src/*.php ${DATADIR}
|
|
${CP} ${WRKSRC}/src/*.inc ${DATADIR}
|
|
${CP} ${WRKSRC}/src/*.dat ${DATADIR}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/docs/ ${DOCSDIR}
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${CP} ${WRKSRC}/src/Examples/* ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|