New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 83227


Ignore:
Timestamp:
08/28/11 22:13:01 (4 years ago)
Author:
ryandesign@…
Message:

libranlib: whitespace changes / reformatting / add modeline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/math/libranlib/Portfile

    r43679 r83227  
     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                    libranlib 
    6 version                 1.0 
    7 categories              math 
    8 platforms               darwin 
    9 maintainers             nomaintainer 
    10 description             Library of Routines for Random Number Generation 
    11 long_description        \ 
    12 This library provides routines that return: Beta random deviates, Chi-square \ 
    13 random deviates, Exponential random deviates, F random deviates, Gamma random \ 
    14 deviates, Multivariate normal random deviates (mean and covariance matrix \ 
    15 specified), Noncentral chi-square random deviates, Noncentral F random \ 
    16 deviates, Univariate normal random deviates, Random permutations of an integer \ 
    17 array, Real uniform random deviates between specif, Binomial random deviates, \ 
    18 Negative Binomial random deviates, Multinomial random deviates, Poisson random \ 
    19 deviates, Integer uniform deviates between specified limits and Seeds for the \ 
    20 random number generator calculated from a character string. 
     6name                libranlib 
     7version             1.0 
     8categories          math 
     9platforms           darwin 
     10maintainers         nomaintainer 
    2111 
    22 homepage                ftp://ftp.netlib.org/random/ 
    23 master_sites    ftp://ftp.netlib.org/random/ 
    24 distname                ranlib.c 
    25 checksums               md5 110d02ab91eb834e45044bb0368dfb7e 
     12description         Library of Routines for Random Number Generation 
    2613 
    27 worksrcdir              ${worksrcdir}/src 
     14long_description    This library provides routines that return: Beta random \ 
     15                    deviates, Chi-square random deviates, Exponential random \ 
     16                    deviates, F random deviates, Gamma random deviates, \ 
     17                    Multivariate normal random deviates (mean and covariance \ 
     18                    matrix specified), Noncentral chi-square random deviates, \ 
     19                    Noncentral F random deviates, Univariate normal random \ 
     20                    deviates, Random permutations of an integer array, Real \ 
     21                    uniform random deviates between specif, Binomial random \ 
     22                    deviates, Negative Binomial random deviates, Multinomial \ 
     23                    random deviates, Poisson random deviates, Integer uniform \ 
     24                    deviates between specified limits and Seeds for the \ 
     25                    random number generator calculated from a character string. 
    2826 
    29 post-extract { file copy ${filespath}/Makefile ${worksrcpath} } 
     27homepage            ftp://ftp.netlib.org/random/ 
     28master_sites        ftp://ftp.netlib.org/random/ 
     29distname            ranlib.c 
    3030 
    31 use_configure   no 
    3231fetch.use_epsv      no 
    3332fetch.user          anonymous 
    3433fetch.password      guest@macports.org 
    3534 
    36 build.args      CFLAGS=-fno-common prefix=${prefix} 
     35checksums           md5     110d02ab91eb834e45044bb0368dfb7e 
    3736 
    38 destroot.args   prefix=${prefix} 
     37worksrcdir          ${worksrcdir}/src 
    3938 
     39post-extract { 
     40    file copy ${filespath}/Makefile ${worksrcpath} 
     41} 
     42 
     43use_configure       no 
     44 
     45build.args          CFLAGS=-fno-common \ 
     46                    prefix=${prefix} 
     47 
     48destroot.args       prefix=${prefix} 
Note: See TracChangeset for help on using the changeset viewer.