1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; \ |
---|
2 | c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
---|
3 | # $Id$ |
---|
4 | |
---|
5 | PortSystem 1.0 |
---|
6 | |
---|
7 | name tuxtype |
---|
8 | version 1.7.3 |
---|
9 | revision 0 |
---|
10 | categories games education |
---|
11 | platforms darwin |
---|
12 | maintainers gmail.com:davidstuartbruce |
---|
13 | |
---|
14 | description Learn to type with Tux, the Linux Penguin! |
---|
15 | long_description Tux Typing is an SDL-based educational game intended for children but fun for all ages. \ |
---|
16 | The program includes two video game-styled activities for typing individual words, \ |
---|
17 | as well as a phrase/sentence typing activity that displays accuracy and words per \ |
---|
18 | minute. |
---|
19 | |
---|
20 | homepage http://www.tux4kids.com |
---|
21 | master_sites http://alioth.debian.org/frs/download.php/2767/ |
---|
22 | distname ${name}_w_fonts-${version} |
---|
23 | |
---|
24 | checksums md5 9b76e5ebb3daf3d93545dc561229e2a5 \ |
---|
25 | sha1 8029c5484e1fac2bea764b9eef6f9845d0c725ce \ |
---|
26 | rmd160 b7e10052582c894c272f591c5c907ae56a03b926 |
---|
27 | |
---|
28 | depends_lib port:libsdl \ |
---|
29 | port:libsdl_image \ |
---|
30 | port:libsdl_mixer \ |
---|
31 | port:libsdl_ttf \ |
---|
32 | port:libsdl_pango \ |
---|
33 | port:gettext |
---|
34 | |
---|
35 | platform darwin { |
---|
36 | post-destroot { |
---|
37 | xinstall -m 755 -d ${destroot}/Applications/MacPorts/TuxType.app/Contents/MacOS |
---|
38 | ln -s ${prefix}/bin/tuxtype ${destroot}/Applications/MacPorts/TuxType.app/Contents/MacOS/TuxType |
---|
39 | } |
---|
40 | } |
---|