Ticket #44286: Portfile-eggdrop.diff

File Portfile-eggdrop.diff, 2.6 KB (added by dreness (Andre LaBranche), 10 years ago)
  • Portfile

    old new  
    33
    44PortSystem 1.0
    55
    6 name            eggdrop
    7 version         1.6.20
    8 revision        1
    9 set branch      [join [lrange [split ${version} .] 0 1] .]
    10 categories      irc
    11 maintainers     mac.com:dre
    12 description     Eggdrop is the world's most popular Internet Relay Chat (IRC) bot.
    13 long_description        ${description}
    14 homepage        http://www.eggheads.org
    15 platforms       darwin
    16 master_sites    ftp://ftp.eggheads.org/pub/eggdrop/source/${branch}/ freebsd
    17 distname        ${name}${version}
    18 
    19 checksums       sha1    7ebecd0955af36caa1846d0e7cd1f959f819f6b5 \
    20                 rmd160  567668974e971a0c8ad6674a0500b32991a95f3d
     6name                    eggdrop
     7version                 1.6.21
     8license                 GPL
     9set branch              [join [lrange [split ${version} .] 0 1] .]
     10categories              irc
     11maintainers             mac.com:dre
     12description             Eggdrop is the world's most popular Internet Relay Chat (IRC) bot.
     13long_description        ${description}
     14homepage                http://www.eggheads.org
     15platforms               darwin
     16master_sites            ftp://ftp.eggheads.org/pub/eggdrop/source/${branch}/ freebsd
     17distname                ${name}${version}
     18
     19checksums               rmd160  1006dfd6a6e735500c2b484eb3061f1d2dfd20f8 \
     20                        sha256  75bd5573a609eac3940c0b6ca8251c3f38ea5d54b520e1cad93c650b4bc21754
    2121
    22 use_bzip2       yes
     22use_bzip2               yes
    2323
    24 patchfiles      patch-Makefile.in-LDFLAGS.diff
     24patchfiles              patch-Makefile.in-LDFLAGS.diff
    2525
    26 post-configure  { system "cd ${worksrcpath} && make config" }
    27 destroot.destdir DEST=${destroot}${prefix}/share/eggdrop
     26post-configure          { system "cd ${worksrcpath} && make config" }
     27destroot.destdir        DEST=${destroot}${prefix}/share/eggdrop
    2828
    29 post-destroot   {
     29post-destroot           {
    3030    delete ${destroot}${prefix}/share/eggdrop/eggdrop
    3131    ln -s ../share/eggdrop/eggdrop-${version} ${destroot}${prefix}/bin/eggdrop
    3232    move ${destroot}${prefix}/share/eggdrop/eggdrop.conf ${destroot}${prefix}/share/eggdrop/eggdrop.conf.sample
    3333    move ${destroot}${prefix}/share/eggdrop/doc/man1/eggdrop.1 ${destroot}${prefix}/share/man/man1
    3434}
    3535
    36 platform darwin 8 {
    37         configure.cflags-append "-DBIND_8_COMPAT"
     36platform darwin 8       {
     37    configure.cflags-append "-DBIND_8_COMPAT"
    3838}
    3939
    4040if {${os.platform} eq "darwin" && ${os.major} >= 10} {
    4141    patchfiles-append patch-Makefile.in.diff
    4242}
     43
     44if {${os.platform} eq "darwin" && ${os.major} >= 13} {
     45    patchfiles-append patch-src-tclhash.h.diff
     46    patchfiles-append patch-src-proto.h.diff
     47    patchfiles-append patch-src-match.c.diff
     48}