1 | # $Id: Portfile 36 2008-05-24 12:57:58Z hisi $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name KeyJnote |
---|
6 | version 0.10.2 |
---|
7 | revision 2 |
---|
8 | categories graphics |
---|
9 | maintainers hitzemann.org:simon |
---|
10 | description KeyJnote is a program that displays presentation slides. |
---|
11 | long_description \ |
---|
12 | KeyJnote is a program that displays presentation slides. But unlike \ |
---|
13 | OpenOffice.org Impress or other similar applications, it does so with \ |
---|
14 | style. Smooth alpha-blended slide transitions are provided for the \ |
---|
15 | sake of eye candy, but in addition to this, KeyJnote offers some unique \ |
---|
16 | tools that are really useful for presentations. Read below if you want \ |
---|
17 | to know more about these features. |
---|
18 | homepage http://keyjnote.sourceforge.net |
---|
19 | platforms darwin |
---|
20 | master_sites sourceforge:keyjnote |
---|
21 | checksums md5 b6bd8a552b6949ad2041deb9e126c6ad \ |
---|
22 | sha1 fe49266e818655984c7d34d459098f3db9c244ae \ |
---|
23 | rmd160 41f9afd5ed045edbcc39e7268c72b5b9c119e70f |
---|
24 | |
---|
25 | use_configure no |
---|
26 | |
---|
27 | depends_lib port:py25-opengl \ |
---|
28 | port:py25-game \ |
---|
29 | port:xpdf \ |
---|
30 | port:ghostscript \ |
---|
31 | port:pdftk |
---|
32 | |
---|
33 | variant no_xpdf \ |
---|
34 | conflicts no_ghostscript \ |
---|
35 | description "Removes dependencies on xpdf (Not recommended)" { |
---|
36 | depends_lib-delete port:xpdf |
---|
37 | } |
---|
38 | |
---|
39 | variant no_ghostscript \ |
---|
40 | conflicts no_xpdf \ |
---|
41 | description "Removes dependencies on ghostscript" { |
---|
42 | depends_lib-delete port:ghostscript |
---|
43 | } |
---|
44 | |
---|
45 | variant no_pdftk \ |
---|
46 | description "Removes dependencies on pdftk (not recommended)" { |
---|
47 | depends_lib-delete port:pdftk |
---|
48 | } |
---|
49 | |
---|
50 | build { |
---|
51 | } |
---|
52 | |
---|
53 | post-build { |
---|
54 | reinplace "s|#!/usr/bin/env python|#!${prefix}/bin/python2.5|g" ${worksrcpath}/keyjnote.py |
---|
55 | } |
---|
56 | |
---|
57 | destroot { |
---|
58 | xinstall -m 755 -d ${destroot}/bin |
---|
59 | xinstall -m 755 ${worksrcpath}/keyjnote.py ${destroot}${prefix}/bin/keyjnote |
---|
60 | } |
---|