Ticket #13573: yasm-0.6.2_1.diff

File yasm-0.6.2_1.diff, 719 bytes (added by bytestorm@…, 17 years ago)

Adds nls variant requesting deps or removes nls from build

  • (a) Portfile-0.6.2_0 vs. (b) Portfile

    a b  
    1 # $Id: Portfile 32000 2007-12-13 11:59:17Z ryandesign@macports.org $
    2 
    31PortSystem      1.0
     2
    43name            yasm
    54version         0.6.2
    6 revision        0
     5revision        1
    76categories      lang
    87maintainers     bytestorm@gmail.com
    98description     yasm - a modular bsd reimplementation of NASM
     
    2019checksums       ${distname}${extract.suffix} \
    2120                    sha1 cf3e09fa7847e17427f0b1f03f63cfbdba33a014
    2221
    23 configure.args --prefix=${prefix}
     22configure.args --prefix=${prefix} --disable-nls
    2423
     24variant nls {
     25                depends_lib-append port:gettext port:libiconv
     26                configure.args-delete --disable-nls
     27                configure.args-append --enable-nls
     28}