Ticket #14634: Portfile

File Portfile, 1.1 KB (added by waterson@…, 16 years ago)

Proposed Portfile

Line 
1# $Id: Portfile 28539 2007-09-03 11:29:08Z mww@macports.org $
2
3PortSystem 1.0
4name            darcs
5version         2.0.0pre3
6categories      devel
7maintainers     nomaintainer@macports.org
8description     David's Advanced Revision Control System
9long_description \
10                David's Advanced Revision Control System is yet \
11                another replacement for CVS. It is written in Haskell, \
12                and has been tested on Linux and Mac OS X. Darcs \
13                includes a cgi script, which can be used to view the \
14                contents of your repository.
15
16homepage        http://darcs.net/
17platforms       darwin
18master_sites    ${homepage}
19
20checksums       md5 eb011539b0802615dc2fe17730df8595
21
22depends_build   port:ghc
23depends_lib     port:readline \
24                port:curl \
25                port:gmp
26
27configure.args  --mandir=${prefix}/share/man \
28                --without-docs
29
30build.env       PREFIX=${prefix}
31destroot.env    PREFIX=${prefix}
32
33# This is broken right now.
34#variant docs {
35#    depends_build-append    port:latex2html
36#   
37#    configure.args-delete   --without-docs
38#    configure.args-append   --with-docs
39#}
40