Ticket #46238: Portfile

File Portfile, 686 bytes (added by RJVB (René Bertin), 9 years ago)

concurrent mode is now the default; the older exclusive mode is available as +exclusive

Line 
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 126922 2014-10-17 18:50:56Z ryandesign@macports.org $
3
4PortSystem          1.0
5
6name                qt4-mac
7version             4.8.6
8revision            3
9
10if {[catch {source "${portpath}/Portfile.qt4"} err]} {
11    puts stderr "Error reading Portfile.qt4: $err"
12    return 1; 
13}
14
15subport ${name}-transitional {
16        conflicts           qt3 qt3-mac
17    if {[file exists ${prefix}/Library/Frameworks/QtCore.framework/Versions/5/QtCore]} {
18        conflicts       qt5-mac
19    }
20    universal_variant   no
21    depends_lib         port:qt4-mac
22}