Ticket #18187: patch-ncurses.diff
File patch-ncurses.diff, 1.0 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 16 years ago) |
---|
-
Portfile
old new 1 1 # $Id: Portfile 42173 2008-11-16 16:53:43Z nox@macports.org $ 2 2 3 3 PortSystem 1.0 4 PortGroup muniversal 1.0 4 5 5 6 name ncurses 6 7 version 5.7 … … 34 35 --enable-safe-sprintf \ 35 36 --enable-sigwinch \ 36 37 --without-progs \ 37 --mandir=${prefix}/share/delete-me 38 --mandir=${prefix}/share/delete-me \ 39 --with-manpage-format=normal 38 40 39 41 post-destroot { 40 42 # terminfo & manpages also do come with ncursesw … … 46 48 destroot.env-append LD_LIBRARY_PATH=${prefix}/lib 47 49 } 48 50 51 # configure script expects to be able to run binaries 52 if { ${os.arch}=="i386" } { 53 # with only three architectues, the merge does not work 54 if { [llength ${universal_archs}] > 2 } { 55 set universal_archs_supported "i386 x86_64" 56 } 57 } else { 58 set universal_archs_supported "ppc ppc64" 59 } 60 49 61 use_parallel_build yes