Ticket #37797: Portfile.diff

File Portfile.diff, 1.5 KB (added by cooljeanius (Eric Gallager), 10 years ago)

diff between the first Portfile that I attached and the one I just attached now

  • Portfile

    old new  
    55
    66name                portfile-gen
    77version             0.2
    8 categories          sysutils
     8revision            1
     9categories          sysutils macports
    910maintainers         ryandesign gwmail.gwu.edu:egall openmaintainer
    1011platforms           darwin
    1112license             BSD
    1213supported_archs     noarch
    1314
    14 description         Generate a basic template Portfile given a few bits of information
    15 long_description    ${description}
    16 homepage            http://svn.macports.org/repository/macports/contrib/portfile-gen
     15description         Generate a basic template Portfile given a few bits \
     16                    of information
     17long_description    ${description}.
     18homepage            http://svn.macports.org/repository/macports/contrib/${name}
    1719
    1820livecheck.type      none
    1921
    2022fetch.type          svn
    21 svn.url             https://svn.macports.org/repository/macports/contrib/portfile-gen
    22 svn.revision        102094
     23svn.url             https://svn.macports.org/repository/macports/contrib/${name}
     24svn.revision        114218
     25
     26worksrcdir          ${name}
    2327
    2428use_configure       no
    2529
    26 build {}
     30# should be implied by turning off configure:
     31configure.ccache    no
     32
     33build {
     34    ui_debug "${name} has no build step"
     35}
    2736
    2837destroot {
    29     xinstall -m 755 ${workpath}/${name}/${name} ${destroot}${prefix}/bin/${name}
     38    xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/${name}
    3039}
    3140