Changeset 3111 for trunk/dports


Ignore:
Timestamp:
Jul 31, 2003, 10:08:36 PM (21 years ago)
Author:
waqar
Message:

Updated to use the new mirror list format.

Location:
trunk/dports/devel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/devel/gengetopt/Portfile

    r2913 r3111  
    1 # $Id: Portfile,v 1.2 2003/06/20 01:55:20 jkh Exp $
     1# $Id: Portfile,v 1.3 2003/07/31 22:07:46 waqar Exp $
    22
    33PortSystem 1.0
     
    77maintainers    waqar@opendarwin.org
    88description    Generates a C function that uses getopt_long function
     9long_description   \
     10        This program generates a C function that uses getopt_long \
     11        function to parse the command line options, to validate them \
     12        and fills a struct. Thus your program can now handle options \
     13        such as: \
     14                myprog --input foo.c -o foo.o --no-tabs -i 100 *.class \
     15        And both long options (those that start with --) and short \
     16        options (start with - and consist of only one character) can \
     17        be handled. gengetopt is perfect if you are too lazy (like me) \
     18        to write all stuff required to call getopt_long, and when you \
     19        have a program and wish it took options. Generated code works \
     20        if you use GNU Autoconf or GNU Automake .
    921homepage       http://www.gnu.org/software/gengetopt/gengetopt.html
    1022platforms      darwin
    11 master_sites   ftp://ftp.gnu.org/gnu/${name}/ \
    12                ftp://mirrors.kernel.org/gnu/${name}/ \
    13                http://mirrors.kernel.org/gnu/${name}/ \
    14                ftp://gatekeeper.dec.com/pub/GNU/${name}/ \
    15                ftp://ftp.keystealth.org/pub/gnu/${name}/
     23master_sites   gnu:${name}
    1624checksums      md5 36f65ef33f937252636dd16e75da6681
    17 
    18 long_description   \
    19 This program generates a C function that uses getopt_long \
    20 function to parse the command line options, to validate them \
    21 and fills a struct. Thus your program can now handle options \
    22 such as: \
    23         myprog --input foo.c -o foo.o --no-tabs -i 100 *.class \
    24 And both long options (those that start with --) and short \
    25 options (start with - and consist of only one character) can \
    26 be handled. gengetopt is perfect if you are too lazy (like me) \
    27 to write all stuff required to call getopt_long, and when you \
    28 have a program and wish it took options. Generated code works \
    29 if you use GNU Autoconf or GNU Automake .
  • trunk/dports/devel/gmake/Portfile

    r3081 r3111  
    1 # $Id: Portfile,v 1.2 2003/07/21 18:05:45 waqar Exp $
     1# $Id: Portfile,v 1.3 2003/07/31 22:08:36 waqar Exp $
    22
    33PortSystem 1.0
     
    1919set   d_name    make
    2020distname        ${d_name}-${version}
    21 master_sites    ftp://ftp.gnu.org/pub/gnu/${d_name}/ \
    22                 ftp://aeneas.mit.edu/pub/gnu/${d_name}/ \
    23                 ftp://ftp.irisa.fr/pub/gnu/${d_name}/ \
    24                 ftp://ftp.mirror.ac.uk/sites/ftp.gnu.org/gnu/${d_name}/ \
    25                 ftp://ftp.ring.gr.jp/pub/GNU/${d_name}/
     21master_sites    gnu:${d_name}
    2622checksums       md5 c68540da9302a48068d5cce1f0099477
    27 
    2823configure.args-append --program-prefix=g
    29 
Note: See TracChangeset for help on using the changeset viewer.