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

- Support staging.

- Set LICENSE.

PR:		191104
Submitted by:	Keith Gaughan <k@stereochro.me>
Approved by:	portmgr blanket approval
This commit is contained in:
Raphael Kubo da Costa 2014-06-21 11:10:01 +00:00
parent 1b62b9b733
commit 0d94ab3daa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=358689
2 changed files with 8 additions and 5 deletions

View File

@ -9,6 +9,10 @@ MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= saper@saper.info
COMMENT= A minimalist implementation of python in 64k of code
LICENSE= MIT PSFL
LICENSE_COMB= multi
LICENSE_FILE= LICENSE.txt
USE_PYTHON_BUILD= yes
USE_PYDISTUTILS= yes
@ -20,7 +24,6 @@ PLIST_FILES= bin/tinypy
OPTIONS_DEFINE= PYGAME
PYGAME_DESC= PyGame support (requires SDL)
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPYGAME}
@ -40,10 +43,10 @@ do-configure:
@${DO_NADA}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/build/tinypy ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/build/tinypy ${STAGEDIR}${PREFIX}/bin
.if ${PORT_OPTIONS:MEXAMPLES} && ${PORT_OPTIONS:MPYGAME}
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/julia.py ${EXAMPLESDIR}
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/julia.py ${STAGEDIR}${EXAMPLESDIR}
.endif
.include <bsd.port.post.mk>

View File

@ -16,4 +16,4 @@ it includes a whole heap of features:
o some builtins
* batteries not included -- yet
WWW: http://www.tinypy.org/
WWW: http://www.tinypy.org/