Changeset 68917 for trunk/dports/tex
- Timestamp:
- Jun 17, 2010, 10:38:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/tex/texlive-bin/Portfile
r68890 r68917 8 8 name texlive-bin 9 9 version 2009 10 revision 110 revision 2 11 11 12 12 categories tex … … 32 32 rmd160 e467932d53abe418f4e36a56afb683912ab0caec 33 33 34 # xetex doesn't build 64-bit; force 32-bit for now35 supported_archs i386 ppc36 34 universal_variant no 37 35 … … 73 71 reinplace "s|@@TEXMFMAIN@@|${texlive_texmfmain}|" ${worksrcpath}/texk/texlive/linked_scripts/Makefile.in 74 72 reinplace "s|@@TEXMFDIST@@|${texlive_texmfdist}|" ${worksrcpath}/texk/texlive/linked_scripts/Makefile.in 73 74 if {![variant_isset atsui]} { 75 # Force configure to believe that Carbon API is 76 # unavailable. This test is actually used to determine whether 77 # ATSUI should be used. 78 reinplace "s|kpse_cv_have_Carbon=yes|kpse_cv_have_Carbon=no|" ${worksrcpath}/texk/web2c/configure 79 reinplace "s|kpse_cv_have_Carbon=yes|kpse_cv_have_Carbon=no|" ${worksrcpath}/texk/xdv2pdf/configure 80 } 75 81 } 76 82 … … 87 93 --disable-native-texlive-build \ 88 94 --without-old-mac-fonts \ 89 --with-tex-banner="TeX Live/MacPorts ${version} " \95 --with-tex-banner="TeX Live/MacPorts ${version}_${revision}" \ 90 96 --enable-shared \ 91 97 --with-system-freetype2 \ … … 115 121 # work around bug in texlive makefiles where $OBJC is not recorded 116 122 # during configure phase 117 append_list_to_environment_value build "OBJC" ${configure.objc} 118 append_list_to_environment_value build "OBJCFLAGS" ${configure.objcflags} 119 append_list_to_environment_value build "OBJCFLAGS" ${configure.objc_archflags} 120 123 pre-build { 124 append_list_to_environment_value build "OBJC" ${configure.objc} 125 append_list_to_environment_value build "OBJCFLAGS" ${configure.objcflags} 126 append_list_to_environment_value build "OBJCFLAGS" ${configure.objc_archflags} 127 } 121 128 122 129 post-destroot { … … 126 133 delete ${destroot}${texlive_texmfmain} 127 134 delete ${destroot}${texlive_texmfdist} 135 } 136 137 post-activate { 138 system "${prefix}/bin/texhash" 139 } 140 141 variant atsui description {Use ATSUI instead of freetype for XeTeX font rendering (forces 32-bit)} { 142 # force 32-bit build 143 supported_archs i386 ppc 128 144 } 129 145
Note: See TracChangeset
for help on using the changeset viewer.