Changes between Initial Version and Version 10 of Ticket #1447


Ignore:
Timestamp:
Mar 24, 2016, 12:08:05 PM (8 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1447

    • Property Status changed from new to closed
    • Property Attachments.isobsolete changed from 0 to 1
    • Property Resolution changed from to fixed
    • Property Type changed from defect to update
    • Property Port nmap added
  • Ticket #1447 – Description

    initial v10  
    66
    771. version and md5 update to 3.50
    8 2. change use of ${prefix} in configure.args to do what I think is meant (it was passing '${prefix}'
    9 before instead of inserting the value of ${prefix} into the configure args).
     82. change use of ${prefix} in configure.args to do what I think is meant (it was passing '${prefix}' before instead of inserting the value of ${prefix} into the configure args).
    109
    1110Portfile diffs inline:
    1211
     12{{{
    1313Index: Portfile
    14 ============================================================
    15 =======
     14===================================================================
    1615RCS file: /Volumes/src/cvs/od/proj/darwinports/dports/net/nmap/Portfile,v
    1716retrieving revision 1.26
     
    3837 use_bzip2      yes
    3938 
    40 -configure.args --without-nmapfe --mandir=\\\${prefix}/share/man --infodir=\\\${prefix}/
    41 share/info
    42 +configure.args --without-nmapfe --mandir=${destroot}${prefix}/share/man --
    43 infodir=${destroot}${prefix}/share/info
     39-configure.args --without-nmapfe --mandir=\\\${prefix}/share/man --infodir=\\\${prefix}/share/info
     40+configure.args --without-nmapfe --mandir=${destroot}${prefix}/share/man --infodir=${destroot}${prefix}/share/info
    4441 
    4542 variant gtk    { configure.args-delete --without-nmapfe
    4643                  depends_lib-append lib:libgtk.1:gtk1 }
     44}}}