Changeset 117765 for trunk/dports


Ignore:
Timestamp:
Mar 11, 2014, 10:24:13 AM (10 years ago)
Author:
raimue@…
Message:

textproc/html-xml-utils:
Drop the w3* prefix as there are no obvious conflicts with any system tools or
other ports. As the program prefix was used ever since this port was added,
install symlinks for compatibility.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/textproc/html-xml-utils/Portfile

    r117764 r117765  
    66name                html-xml-utils
    77version             6.5
     8revision            1
    89categories          textproc
    910platforms           darwin
     
    2122                    sha256  21e411f7a52281bb006aa0177f0996b832f27a85c00ba126acf98ddc06248c9a                   
    2223
    23 configure.args      --program-prefix=w3
    24 
    2524configure.cflags-append -std=gnu89
    2625
    2726configure.libs-append   -liconv
    2827
     28post-destroot {
     29    # For backwards compatibility, restore the program prefix that was used in
     30    # earlier versions of this port
     31    fs-traverse f "${destroot}${prefix}/bin ${destroot}${prefix}/share/man" {
     32        if [file isfile $f] {
     33            ln -s [file tail $f] [file dirname $f]/w3[file tail $f]
     34        }
     35    }
     36}
     37
    2938livecheck.type      regex
    3039livecheck.url       [lindex ${master_sites} 0]
Note: See TracChangeset for help on using the changeset viewer.