1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Add staging support

- Convert to USES=tar:bzip2, new options framework
This commit is contained in:
Pawel Pekala 2014-04-27 19:40:51 +00:00
parent e9c8720884
commit f865373354
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=352454

View File

@ -5,15 +5,15 @@ PORTNAME= jpgraph
PORTVERSION= 3.0.7
CATEGORIES= graphics
MASTER_SITES= http://hem.bredband.net/jpgraph2/
PKGNAMESUFFIX= 2
MAINTAINER= ports@FreeBSD.org
COMMENT= Draw both "quick and dirty" graphs with a minimum of code
USE_BZIP2= yes
USES= tar:bzip2
NO_BUILD= yes
NO_WRKSUBDIR= yes
USE_PHP= gd
NO_STAGE= yes
NO_CDROM= The free version cannot be used in a commercial context
@ -21,20 +21,16 @@ PORTDATA= *
PORTDOCS= *
PORTEXAMPLES= *
LATEST_LINK= jpgraph2
OPTIONS_DEFINE= DOCS EXAMPLES
do-install:
@${MKDIR} ${DATADIR}
${CP} ${WRKSRC}/src/*.php ${DATADIR}
${CP} ${WRKSRC}/src/*.dat ${DATADIR}
${CP} -R ${WRKSRC}/src/lang ${DATADIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${CP} -R ${WRKSRC}/docportal/* ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
${CP} ${WRKSRC}/src/Examples/* ${EXAMPLESDIR}
.endif
@${MKDIR} ${STAGEDIR}${DATADIR}
${CP} ${WRKSRC}/src/*.php ${STAGEDIR}${DATADIR}
${CP} ${WRKSRC}/src/*.dat ${STAGEDIR}${DATADIR}
${CP} -R ${WRKSRC}/src/lang ${STAGEDIR}${DATADIR}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${CP} -R ${WRKSRC}/docportal/* ${STAGEDIR}${DOCSDIR}
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${CP} ${WRKSRC}/src/Examples/* ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>