New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 79433


Ignore:
Timestamp:
06/13/11 01:51:14 (4 years ago)
Author:
ryandesign@…
Message:

xmove: whitespace / formatting changes only; add modeline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/x11/xmove/Portfile

    r79431 r79433  
     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            xmove 
    6 version         2.0beta2 
    7 categories      x11 
    8 platforms       darwin 
    9 maintainers     nomaintainer 
    10 description     An X11 pseudoserver for moving windows between displays 
     6name                xmove 
     7version             2.0beta2 
     8categories          x11 
     9platforms           darwin 
     10maintainers         nomaintainer 
    1111 
    12 long_description xmove lets you change which display an X Window System \ 
    13                         program renders to - this could be a different monitor or \ 
    14                         even a different machine. 
     12description         An X11 pseudoserver for moving windows between displays 
     13 
     14long_description    xmove lets you change which display an X Window System \ 
     15                    program renders to - this could be a different monitor or \ 
     16                    even a different machine. 
    1517 
    1618homepage            http://en.wikipedia.org/wiki/Xmove 
    1719master_sites        freebsd 
    1820 
    19 checksums       md5 d70107f7835b755bd4f57b47a8ac7b38 
     21checksums           md5    d70107f7835b755bd4f57b47a8ac7b38 
    2022 
    21 distname        ${name}.${version} 
    22 patchfiles      patch-XMOVELib.c patch-externs.h patch-main.c patch-move_window.c \ 
    23                         patch-print11.c patch-put_image.c patch-server.c patch-xmovectrl.h 
     23distname            ${name}.${version} 
    2424 
    25 worksrcdir      xmove 
     25patchfiles          patch-XMOVELib.c \ 
     26                    patch-externs.h \ 
     27                    patch-main.c \ 
     28                    patch-move_window.c \ 
     29                    patch-print11.c \ 
     30                    patch-put_image.c \ 
     31                    patch-server.c \ 
     32                    patch-xmovectrl.h 
     33 
     34worksrcdir          xmove 
    2635 
    2736configure { 
    28         system "cd ${worksrcpath}/xmove && xmkmf" 
    29         system "cd ${worksrcpath}/xmovectrl && xmkmf" 
     37    system "cd ${worksrcpath}/xmove && xmkmf" 
     38    system "cd ${worksrcpath}/xmovectrl && xmkmf" 
    3039} 
    3140 
    3241build { 
    33         system "cd ${worksrcpath}/xmove && make xmove" 
    34         system "cd ${worksrcpath}/xmovectrl && make xmovectrl" 
     42    system "cd ${worksrcpath}/xmove && make xmove" 
     43    system "cd ${worksrcpath}/xmovectrl && make xmovectrl" 
    3544} 
    3645 
    3746destroot { 
    38         set mandir ${destroot}${prefix}/share/man/man1 
    39         xinstall -d -m 755 ${destroot}${prefix}/bin ${mandir} 
    40         xinstall -m 755 -W ${worksrcpath} xmove/xmove xmovectrl/xmovectrl \ 
    41                 ${destroot}${prefix}/bin 
    42         xinstall -m 644 -W ${worksrcpath}/man/man1 xmove.1 xmovectrl.1 ${mandir} 
     47    set mandir ${destroot}${prefix}/share/man/man1 
     48    xinstall -d -m 755 ${destroot}${prefix}/bin ${mandir} 
     49    xinstall -m 755 -W ${worksrcpath} xmove/xmove xmovectrl/xmovectrl \ 
     50        ${destroot}${prefix}/bin 
     51    xinstall -m 644 -W ${worksrcpath}/man/man1 xmove.1 xmovectrl.1 ${mandir} 
    4352} 
Note: See TracChangeset for help on using the changeset viewer.