Ticket #11006: Portfile.patch
File Portfile.patch, 824 bytes (added by luc@…, 18 years ago) |
---|
-
Portfile
old new 32 32 port:readline \ 33 33 port:openssl \ 34 34 port:zlib \ 35 port:ncurses \ 36 port:tcl \ 37 port:tk 35 port:ncurses 38 36 39 37 patchfiles patch-Makefile.in \ 40 38 patch-configure.in \ … … 49 47 50 48 configure.args --enable-shared \ 51 49 --mandir="${prefix}/share/man" \ 52 --enable-pthread 50 --enable-pthread \ 51 --without-tk 53 52 configure.env CFLAGS="-O -pipe -I${prefix}/include" \ 54 53 CPPFLAGS="-O -pipe -I${prefix}/include" \ 55 54 LDFLAGS="-L${prefix}/lib" … … 75 74 destroot.env DYLD_LIBRARY_PATH=${destroot}${prefix}/lib 76 75 } 77 76 77 variant tk { 78 configure.args-delete --without-tk 79 configure.args-append --with-tk 80 depends_lib-append port:tcl port:tk 81 }