diff options
author | Johann Visagie <wjv@FreeBSD.org> | 2001-10-22 15:30:30 +0000 |
---|---|---|
committer | Johann Visagie <wjv@FreeBSD.org> | 2001-10-22 15:30:30 +0000 |
commit | be7d79b04052b160c5f8f142caf57b365b92ead5 (patch) | |
tree | d8563ea9fe6b06a4fb7fece17a5aced9e2417a32 /www/quixote | |
parent | b99c7138ac1b7fee6e57ea58176212d3e8508808 (diff) | |
download | ports-be7d79b04052b160c5f8f142caf57b365b92ead5.tar.gz ports-be7d79b04052b160c5f8f142caf57b365b92ead5.zip |
Notes
Diffstat (limited to 'www/quixote')
-rw-r--r-- | www/quixote/Makefile | 2 | ||||
-rw-r--r-- | www/quixote/scripts/compile_ptl.py | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/www/quixote/Makefile b/www/quixote/Makefile index f9df205afd76..d7708ef63952 100644 --- a/www/quixote/Makefile +++ b/www/quixote/Makefile @@ -7,7 +7,7 @@ PORTNAME= quixote PORTVERSION= 0.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= http://www.mems-exchange.org/software/files/quixote/ DISTNAME= Quixote-${PORTVERSION} diff --git a/www/quixote/scripts/compile_ptl.py b/www/quixote/scripts/compile_ptl.py new file mode 100644 index 000000000000..51fec73ddec0 --- /dev/null +++ b/www/quixote/scripts/compile_ptl.py @@ -0,0 +1,5 @@ +import sys +from quixote import ptl_compile + +for srcfile in sys.argv[1:]: + ptl_compile.compile(srcfile, srcfile + 'c') |