Ticket #19392: Portfile.diff
File Portfile.diff, 1.4 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 16 years ago) |
---|
-
Portfile
old new 1 1 # $Id: Portfile 50159 2009-04-27 00:30:10Z ryandesign@macports.org $ 2 2 3 3 PortSystem 1.0 4 PortGroup muniversal 1.0 4 5 5 6 name pango 6 7 version 1.24.1 … … 41 42 42 43 configure.ccache no 43 44 45 # Do not call gzip on man files as it interferes with the universal merger process. 46 post-patch { 47 reinplace "s|\$(MAKE) \$(AM_MAKEFLAGS) install-data-hook||" ${worksrcpath}/pango-view/Makefile.in 48 } 49 44 50 platform macosx {} 45 51 variant quartz requires macosx description {Add Quartz graphics interface} { 46 52 # Although this variant does nothing, pango will automatically build … … 91 97 } 92 98 } 93 99 100 if { ${os.arch}=="i386" } { 101 set merger_configure_env(ppc) "NM='/usr/bin/nm -p'" 102 set merger_configure_env(ppc64) "NM='/usr/bin/nm -p'" 103 } else { 104 set merger_configure_env(i386) "NM='/usr/bin/nm -p'" 105 set merger_configure_env(x86_64) "NM='/usr/bin/nm -p'" 106 } 107 lappend merger_configure_env(ppc64) ac_cv_header_Carbon_Carbon_h=no 108 lappend merger_configure_env(x86_64) ac_cv_header_Carbon_Carbon_h=no 109 94 110 configure.cppflags-append \ 95 111 -no-cpp-precomp 96 112 … … 99 115 -bind_at_load 100 116 101 117 configure.args \ 102 --enable-gtk-doc \103 118 --enable-static 104 119 105 120 # AC_X_PATH blindly asks xmkmf where X11 is, and it always uses /usr/X11R6.