mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
41 lines
878 B
Makefile
41 lines
878 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: jpgraph
|
|
# Date created: Oct 20, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jpgraph
|
|
PORTVERSION= 1.20.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://web.comhem.se/jpgraph/jpgdownloads/
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= Draw both "quick and dirty" graphs with a minimum of code
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/a//}
|
|
USE_PHP= gd
|
|
DEFAULT_PHP_VER=4
|
|
IGNORE_WITH_PHP=5
|
|
|
|
NO_CDROM= The free version cannot be used in a commercial context
|
|
|
|
PORTDOCS= *
|
|
|
|
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>
|