New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 82815


Ignore:
Timestamp:
08/20/11 16:56:33 (4 years ago)
Author:
ryandesign@…
Message:

convmv: add modeline; adjust whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/sysutils/convmv/Portfile

    r82814 r82815  
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 
    12# $Id$ 
    23 
    3 PortSystem 1.0 
     4PortSystem          1.0 
    45 
    5 name                    convmv 
     6name                convmv 
    67version             1.15 
    7 categories              sysutils perl 
    8 platforms               darwin 
    9 maintainers             nomaintainer 
     8categories          sysutils perl 
     9platforms           darwin 
     10maintainers         nomaintainer 
    1011license             GPL-2+ 
    11 supported_archs         noarch 
     12supported_archs     noarch 
    1213 
    13 description             Convert filenames from one encoding to another 
    14 long_description        convmv is meant to help convert a single filename, a \ 
    15                         directory tree and the contained files or a whole filesystem into \ 
    16                         a different encoding. It just converts the filenames, not the \ 
    17                         content of the files. A special feature of convmv is that it also \ 
    18                         takes care of symlinks, also converts the symlink target pointer \ 
    19                         in case the symlink target is being converted, too. All this comes \ 
    20                         in very handy when one wants to switch over from old 8-bit locales \ 
    21                         to UTF-8 locales. It is also possible to convert directories to \ 
    22                         UTF-8 which are already partly UTF-8 encoded. convmv is able to \ 
    23                         detect if certain files are UTF-8 encoded and will skip them by \ 
    24                         default. To turn this smartness off use the --nosmart switch. 
     14description         Convert filenames from one encoding to another 
    2515 
    26 homepage                http://www.j3e.de/linux/convmv/man/ 
    27 master_sites    http://www.j3e.de/linux/convmv/ 
     16long_description    convmv is meant to help convert a single filename, a \ 
     17                    directory tree and the contained files or a whole \ 
     18                    filesystem into a different encoding. It just converts \ 
     19                    the filenames, not the content of the files. A special \ 
     20                    feature of convmv is that it also takes care of symlinks, \ 
     21                    also converts the symlink target pointer in case the \ 
     22                    symlink target is being converted, too. All this comes \ 
     23                    in very handy when one wants to switch over from old \ 
     24                    8-bit locales to UTF-8 locales. It is also possible to \ 
     25                    convert directories to UTF-8 which are already partly \ 
     26                    UTF-8 encoded. convmv is able to detect if certain files \ 
     27                    are UTF-8 encoded and will skip them by default. To turn \ 
     28                    this smartness off use the --nosmart switch. 
     29 
     30homepage            http://www.j3e.de/linux/convmv/man/ 
     31master_sites        http://www.j3e.de/linux/convmv/ 
    2832 
    2933checksums           rmd160  f92c74f93ed02c1c817a6e899f9be910ce6b362e \ 
    3034                    sha256  c315aec78490b588000467d1c51081b36e629de0537c5a17fd48b1acaf8a5135 
    3135 
    32 depends_lib             bin:perl:perl5 
     36depends_lib         bin:perl:perl5 
    3337 
    34 patchfiles              patch-convmv.diff 
     38patchfiles          patch-convmv.diff 
    3539 
    36 use_configure   no 
     40use_configure       no 
    3741 
    38 destroot.args   PREFIX=${prefix} MANDIR=${prefix}/share/man 
     42destroot.args       PREFIX=${prefix} MANDIR=${prefix}/share/man 
     43 
    3944post-destroot { 
    40         xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} 
    41         xinstall -m 644 -W ${worksrcpath} CREDITS Changes GPL2 TODO VERSION \ 
    42                 ${destroot}${prefix}/share/doc/${name} 
     45    xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} 
     46    xinstall -m 644 -W ${worksrcpath} CREDITS Changes GPL2 TODO VERSION \ 
     47        ${destroot}${prefix}/share/doc/${name} 
    4348} 
    4449 
Note: See TracChangeset for help on using the changeset viewer.