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 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name fossil |
---|
7 | version 20110301190432 |
---|
8 | categories devel |
---|
9 | platforms darwin |
---|
10 | maintainers googlemail.com:ciserlohn |
---|
11 | |
---|
12 | description Simple, high-reliability, distributed software configuration management |
---|
13 | long_description Fossil is an distributed software configuration management which supports \ |
---|
14 | distributed version control, distributed bug tracking, distributed wiki, \ |
---|
15 | and a distributed blog mechanism all in single integrated package. It provides \ |
---|
16 | an easy-to-use web interface to access and administrate projects over the \ |
---|
17 | built-in webserver or CGI. |
---|
18 | |
---|
19 | homepage http://www.fossil-scm.org/ |
---|
20 | |
---|
21 | master_sites ${homepage}/download/ |
---|
22 | distname ${name}-src-${version} |
---|
23 | distfiles ${distname}${extract.suffix} |
---|
24 | checksums md5 2bce6d995092b3f29292b49778b027b4 \ |
---|
25 | sha1 4332f6369332e118633c9a7f896b5cd3fd275217 |
---|
26 | |
---|
27 | test.run yes |
---|
28 | |
---|
29 | depends_build port:tcl |
---|
30 | |
---|
31 | depends_lib port:zlib \ |
---|
32 | port:openssl |
---|
33 | |
---|
34 | universal_variant no |
---|
35 | |
---|
36 | post-extract { |
---|
37 | reinplace s|\$\(INSTALLDIR\)|\$(DESTDIR)/${prefix}/bin|g ${worksrcpath}/src/makemake.tcl |
---|
38 | } |
---|
39 | |
---|
40 | configure { |
---|
41 | system "cd ${worksrcpath}/src && tclsh ${worksrcpath}/src/makemake.tcl" |
---|
42 | } |
---|
43 | |
---|
44 | livecheck.type regex |
---|
45 | livecheck.url ${homepage}/download.html |
---|
46 | livecheck.regex ${name}-src-(\\d{14})${extract.suffix} |
---|