diff --git a/Portfile b/Portfile
index 473a491..5577003 100644
a
|
b
|
|
3 | 3 | PortSystem 1.0 |
4 | 4 | |
5 | 5 | name git-core |
6 | | version 1.6.0.2 |
7 | | revision 2 |
| 6 | version 1.6.0.4 |
8 | 7 | description A fast version control system |
9 | 8 | long_description Git is a fast, scalable, distributed open source version \ |
10 | 9 | control system focusing on speed and efficiency. |
… |
… |
distname git-${version} |
20 | 19 | distfiles git-${version}${extract.suffix} \ |
21 | 20 | git-manpages-${version}${extract.suffix} |
22 | 21 | |
23 | | checksums git-${version}${extract.suffix} sha1 4a1d78604d1fb6c0deb43a498feb454970fb6704 \ |
24 | | git-manpages-${version}${extract.suffix} sha1 aab4cfc70a03ca447bbb86422226c892d9be1e4e |
| 22 | checksums git-${version}${extract.suffix} sha1 6e9471519d482894ffd7ecc10cf2c09506971e3d \ |
| 23 | git-manpages-${version}${extract.suffix} sha1 26e713ef11449187f9762fb603cca43b2b5b80b8 |
25 | 24 | |
26 | | depends_run port:openssh port:rsync port:perl5.8 port:p5-error |
| 25 | depends_run port:rsync port:perl5.8 port:p5-error |
27 | 26 | depends_lib port:curl port:zlib port:openssl port:expat port:libiconv |
28 | 27 | |
29 | 28 | patchfiles patch-Makefile.diff patch-http.h.diff |
… |
… |
extract.only git-${version}${extract.suffix} \ |
33 | 32 | |
34 | 33 | use_configure no |
35 | 34 | |
36 | | build.env CFLAGS="-Wall -O2 -I${prefix}/include" LDFLAGS="-L${prefix}/lib" |
37 | | build.args prefix=${prefix} CURLDIR=${prefix} OPENSSLDIR=${prefix} ICONVDIR=${prefix} \ |
38 | | PERL_PATH="${prefix}/bin/perl" NO_FINK=1 NO_DARWIN_PORTS=1 |
| 35 | build.args CFLAGS="-Wall -O2 -I${prefix}/include" LDFLAGS="-L${prefix}/lib" \ |
| 36 | prefix=${prefix} CURLDIR=${prefix} OPENSSLDIR=${prefix} ICONVDIR=${prefix} \ |
| 37 | PERL_PATH="${prefix}/bin/perl" NO_FINK=1 NO_DARWIN_PORTS=1 \ |
| 38 | NO_R_TO_GCC_LINKER=1 |
39 | 39 | |
40 | 40 | test.run yes |
41 | 41 | test.cmd make |
… |
… |
test.args prefix=${prefix} CURLDIR=${prefix} OPENSSLDIR=${prefix} ICONVDIR= |
46 | 46 | |
47 | 47 | destroot.destdir DESTDIR=${destroot} prefix=${prefix} |
48 | 48 | destroot.target install |
49 | | destroot.env CFLAGS="-Wall -O2 -I${prefix}/include" LDFLAGS="-L${prefix}/lib" |
50 | | destroot.args prefix=${prefix} CURLDIR=${prefix} OPENSSLDIR=${prefix} ICONVDIR=${prefix} \ |
51 | | PERL_PATH="${prefix}/bin/perl" NO_FINK=1 NO_DARWIN_PORTS=1 |
| 49 | destroot.args CFLAGS="-Wall -O2 -I${prefix}/include" LDFLAGS="-L${prefix}/lib" \ |
| 50 | prefix=${prefix} CURLDIR=${prefix} OPENSSLDIR=${prefix} ICONVDIR=${prefix} \ |
| 51 | PERL_PATH="${prefix}/bin/perl" NO_FINK=1 NO_DARWIN_PORTS=1 \ |
| 52 | NO_R_TO_GCC_LINKER=1 |
52 | 53 | |
53 | 54 | post-destroot { |
54 | 55 | foreach f {1 5 7} { |
… |
… |
post-destroot { |
78 | 79 | |
79 | 80 | variant doc description {Install HTML and plaintext documentation} { |
80 | 81 | distfiles-append git-htmldocs-${version}${extract.suffix} |
81 | | checksums-append git-htmldocs-${version}${extract.suffix} sha1 ba96fbe8b938df9084e962c70a3a5076b2230371 |
| 82 | checksums-append git-htmldocs-${version}${extract.suffix} sha1 2ce03c496bc6d332cfaed4bd58ddb0a0bce3adea |
82 | 83 | } |
83 | 84 | |
84 | 85 | variant gitweb description {Install gitweb.cgi} { |