[42513] trunk/dports/print/freetype/Portfile

ryandesign at macports.org ryandesign at macports.org
Sat Nov 22 21:51:36 PST 2008


Revision: 42513
          http://trac.macports.org/changeset/42513
Author:   ryandesign at macports.org
Date:     2008-11-22 21:51:36 -0800 (Sat, 22 Nov 2008)
Log Message:
-----------
freetype: Only use --with-old-mac-fonts on Mac OS X 10.4 and earlier. Fixes #15909 and #16839. See also #13045.

Modified Paths:
--------------
    trunk/dports/print/freetype/Portfile

Modified: trunk/dports/print/freetype/Portfile
===================================================================
--- trunk/dports/print/freetype/Portfile	2008-11-23 04:51:24 UTC (rev 42512)
+++ trunk/dports/print/freetype/Portfile	2008-11-23 05:51:36 UTC (rev 42513)
@@ -4,7 +4,7 @@
 
 name                    freetype
 version                 2.3.7
-revision                2
+revision                3
 categories              print graphics
 maintainers             ryandesign
 homepage                http://freetype.sourceforge.net/
@@ -50,8 +50,12 @@
 depends_lib \
     port:zlib
 
-configure.args \
-    --with-old-mac-fonts
+platform macosx {
+    if {${os.major} < 9} {
+        configure.args-append \
+            --with-old-mac-fonts
+    }
+}
 
 configure.universal_ldflags-append \
     -isysroot ${sysroot}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20081122/a1581a21/attachment.html>


More information about the macports-changes mailing list