1 | # $Id: Portfile,v 1.0 2004/08/28 11:32:25 xxx Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name wtf-x |
---|
6 | version 0.1 |
---|
7 | categories aqua |
---|
8 | maintainers riccardo@andreoli.net |
---|
9 | platforms darwin |
---|
10 | description A MacOSX programm to translate common Internet acronyms |
---|
11 | long_description WTF-X is a Mac OS X programm to translate common Internet \ |
---|
12 | acronyms. It's a port of BSD's commandline tool wtf, but \ |
---|
13 | unlike this tool it's running as a service in OS X and \ |
---|
14 | also offers a GUI to browse through all the acronyms and \ |
---|
15 | add new ones. |
---|
16 | homepage http://wtf-x.sourceforge.net |
---|
17 | |
---|
18 | master_sites sourceforge:wtf-x |
---|
19 | use_zip yes |
---|
20 | distname ${name}-release-${version}-source |
---|
21 | checksums md5 101f0798f34f0c9f6a5c9ef8b179192d |
---|
22 | |
---|
23 | use_configure no |
---|
24 | |
---|
25 | worksrcdir wtf-x |
---|
26 | |
---|
27 | build.type pbx |
---|
28 | build.target |
---|
29 | build.args -buildstyle Deployment |
---|
30 | |
---|
31 | destroot { |
---|
32 | set appPath ${destroot}/Applications/DarwinPorts |
---|
33 | file mkdir ${appPath} |
---|
34 | file copy ${worksrcpath}/build/WTF-X.app ${appPath}/WTF-X.app |
---|
35 | } |
---|