1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 83385 2011-08-31 01:52:26Z dports@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name blassic |
---|
7 | version 0.10.2 |
---|
8 | revision 1 |
---|
9 | categories lang |
---|
10 | platforms darwin |
---|
11 | license GPL-2 |
---|
12 | maintainers nomaintainer |
---|
13 | homepage http://blassic.net/ |
---|
14 | master_sites ${homepage}bin/ |
---|
15 | |
---|
16 | description Blassic is a classic Basic interpreter |
---|
17 | |
---|
18 | long_description Blassic is a classic Basic interpreter. The line \ |
---|
19 | numbers are mandatory, and it has PEEK & POKE. The \ |
---|
20 | main goal is to execute programs written in old \ |
---|
21 | interpreters, even those that use peculiar control \ |
---|
22 | flow constructs or automodifiable code. However, it \ |
---|
23 | can be used as a scripting language, and has some \ |
---|
24 | not-so-classic instructions. It has graphics modes \ |
---|
25 | that are compatible with some classic systems and \ |
---|
26 | user defined. |
---|
27 | |
---|
28 | depends_lib port:ncurses |
---|
29 | |
---|
30 | extract.suffix .tgz |
---|
31 | |
---|
32 | checksums md5 37534abbdbe5bac7b7fc00dbe119df92 \ |
---|
33 | sha1 35d99ed793a3ae4a1e5ddd1c3eb6f584a2479d0c \ |
---|
34 | rmd160 9e465dcbfc3d3fb794df40893710808f64b917c5 |
---|
35 | |
---|
36 | configure.args --disable-graphics |
---|
37 | |
---|
38 | post-destroot { |
---|
39 | set docdir ${destroot}${prefix}/share/doc/${name} |
---|
40 | xinstall -d ${docdir} |
---|
41 | xinstall -m 644 -W ${worksrcpath} \ |
---|
42 | AUTHORS \ |
---|
43 | COPYING \ |
---|
44 | NEWS \ |
---|
45 | README \ |
---|
46 | THANKS \ |
---|
47 | TODO \ |
---|
48 | ${docdir} |
---|
49 | } |
---|
50 | |
---|
51 | livecheck.type regex |
---|
52 | livecheck.regex {Current version is ([0-9.]+)} |
---|