Ticket #2647: tom.diff

File tom.diff, 1.6 KB (added by reilles@…, 19 years ago)

diff of the portfile

  • Portfile

    RCS file: /Volumes/src/cvs/od/proj/darwinports/dports/lang/tom/Portfile,v
    retrieving revision 1.1
    diff -u -r1.1 Portfile
     
    22
    33PortSystem    1.0
    44name          jtom
    5 version       2.0
     5version       2.1
    66
    77description      Tom is a pattern matching compiler developed at INRIA.
    88long_description Tom is a pattern matching compiler developed at INRIA.\
     
    2121fetch.type       cvs
    2222cvs.root         :pserver:cvs@cvs-sop.inria.fr:/CVS/aircube
    2323cvs.password     RSUG
    24 cvs.tag          tom-2_0
     24cvs.tag          tom-2_1
    2525cvs.module       ${name}
    2626worksrcdir       ${name}
    2727
     
    3939destroot  {
    4040                xinstall -m 755 -d ${destroot}${prefix}/share/java
    4141                file copy ${worksrcpath}/stable/dist/ ${destroot}${prefix}/share/java/${name}-${version}
    42                 file copy ${worksrcpath}/stable/dist/share/man/man1/tom.1 ${destroot}${prefix}/share/man/man1
     42                file delete ${destroot}${prefix}/share/java/${name}-${version}/doc
     43                file copy ${worksrcpath}/stable/dist/share/man/man1/tom.1 ${destroot}${prefix}/share/man/man1/
     44                file delete ${destroot}${prefix}/share/java/${name}-${version}/man/man1/tom.1
    4345
    4446                system "ln -fs ${prefix}/share/java/${name}-${version}/bin/tom \
    4547                        ${destroot}${prefix}/bin/tom"
     48                system "ln -fs ${prefix}/share/java/${name}-${version}/bin/adt-to-tom.sh \
     49                        ${destroot}${prefix}/bin/adt-to-tom"
     50                system "ln -fs ${prefix}/share/java/${name}-${version}/bin/javac-tom \
     51                        ${destroot}${prefix}/bin/javac-tom"
    4652}
    4753