Ticket #48041: Portfile-libsigsegv-whitespace.diff

File Portfile-libsigsegv-whitespace.diff, 2.8 KB (added by Schamschula (Marius Schamschula), 9 years ago)
  • Portfile

    old new  
     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: Portfile 83381 2011-08-31 00:20:57Z dports@macports.org $
    23
    34PortSystem 1.0
    45
    5 name                    libsigsegv
    6 version                 2.9
    7 categories              devel
    8 maintainers             nomaintainer
    9 description             Library for handling page faults in user mode.
    10 long_description        libsigsegv is a library for handling page faults in user \
    11                                         mode. A page fault occurs when a program tries to access \
    12                                         to a region of memory that is currently not available. \
    13                                         Catching and handling a page fault is a useful technique \
    14                                         for implementing: pageable virtual memory, memory-mapped \
    15                                         access to persistent databases, generational garbage \
    16                                         collectors, stack overflow handlers, distributed shared \
    17                                         memory, etc.
    18 homepage                http://libsigsegv.sourceforge.net/
    19 platforms               darwin
    20 license                 GPL-2+
    21 master_sites    gnu:libsigsegv
    22 
    23 checksums               sha1    b15af8522d2b94a815c0641df62343189b225363 \
    24                         rmd160  fa733cb3ee09515be326363a0786740beb2de17c
    25 
    26 test.run                yes
    27 test.target             check
    28 
    29 configure.args          --mandir=${prefix}/share/man \
    30                         --enable-shared
    31 
    32 post-destroot   {
    33         xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
    34         xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS PORTING \
    35                 README README.woe32 ${destroot}${prefix}/share/doc/${name}
     6name            libsigsegv
     7version         2.9
     8categories      devel
     9maintainers     nomaintainer
     10description     Library for handling page faults in user mode.
     11long_description    libsigsegv is a library for handling page faults in user \
     12                    mode. A page fault occurs when a program tries to access \
     13                    to a region of memory that is currently not available. \
     14                    Catching and handling a page fault is a useful technique \
     15                    for implementing: pageable virtual memory, memory-mapped \
     16                    access to persistent databases, generational garbage \
     17                    collectors, stack overflow handlers, distributed shared \
     18                    memory, etc.
     19homepage        http://libsigsegv.sourceforge.net/
     20platforms       darwin
     21license         GPL-2+
     22master_sites    gnu:libsigsegv
     23
     24checksums       sha1    b15af8522d2b94a815c0641df62343189b225363 \
     25                rmd160  fa733cb3ee09515be326363a0786740beb2de17c
     26
     27test.run        yes
     28test.target     check
     29
     30configure.args  --mandir=${prefix}/share/man \
     31                --enable-shared
     32
     33post-destroot   {
     34    xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
     35    xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS PORTING \
     36        README README.woe32 ${destroot}${prefix}/share/doc/${name}
    3637}