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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup qt4 1.0 |
---|
6 | |
---|
7 | name tiled |
---|
8 | version 0.9.0 |
---|
9 | categories devel games aqua |
---|
10 | platforms darwin |
---|
11 | maintainers nomaintainer |
---|
12 | # I'm not going to risk indicating the wrong license and making the port |
---|
13 | # distributable when it shouldn't be. Someone else please figure it out. |
---|
14 | #license {BSD GPL-2 LGPL-2} |
---|
15 | |
---|
16 | description general purpose tile map editor |
---|
17 | |
---|
18 | long_description ${name} is a ${description}, built to be flexible and \ |
---|
19 | easy to use. In addition to its own map format, Tiled \ |
---|
20 | supports read/write plugins for using it with \ |
---|
21 | proprietary map formats or formats used by other editors. |
---|
22 | |
---|
23 | homepage http://www.mapeditor.org/ |
---|
24 | master_sites sourceforge:project/tiled/tiled-qt/${version} |
---|
25 | distname ${name}-qt-${version} |
---|
26 | |
---|
27 | checksums md5 e2e21a54ff17e34b49b8a330cc8b657e \ |
---|
28 | sha1 389c846bf81adf411cb004329028924432b4b2cd \ |
---|
29 | rmd160 3faf36f22187b82943640bfb833d14c617487c01 \ |
---|
30 | sha256 ffc8831be72eede7a2fca64909560124452370457214d811d6c7030e057a1a33 |
---|
31 | |
---|
32 | # Doesn't use the right compiler |
---|
33 | |
---|
34 | # Doesn't use -arch flags |
---|
35 | universal_variant no |
---|
36 | |
---|
37 | # Everything has the wrong install_name |
---|
38 | |
---|
39 | configure.cmd ${qt_qmake_cmd} |
---|
40 | configure.pre_args PREFIX=${prefix} |
---|
41 | configure.universal_args-delete --disable-dependency-tracking |
---|
42 | configure.args RPATH=no |
---|
43 | |
---|
44 | post-destroot { |
---|
45 | # Apps get installed in the wrong place |
---|
46 | eval move [glob ${destroot}${prefix}/bin/*.app] ${destroot}${applications_dir} |
---|
47 | } |
---|