==== Patch <dports_security_md5deep> level 1
Source: f4683a9b-5f3c-4ec4-b7f8-a7e21da36217:/local/trunk/dports/security:20116 [local]
Target: d073be05-634f-4543-b044-5fe20cf6d1d6:/trunk/dports/security:20731 [mirrored]
(http://svn.macports.org/repository/macports/trunk)
Log:
r19897@entropy: mark | 2006-11-08 11:01:13 -0800
Copy the mirrored repository to a local repository.
r20115@entropy: mark | 2006-11-27 12:56:33 -0800
Update to 1.12
r20116@entropy: mark | 2006-11-27 13:03:23 -0800
cleanup whitespace
=== md5deep/Portfile
==================================================================
|
|
|
1 | 1 | # $Id$ |
2 | 2 | |
3 | | PortSystem 1.0 |
4 | | name md5deep |
5 | | version 1.9.3 |
6 | | categories security sysutils |
7 | | maintainers blb@opendarwin.org |
8 | | description Recursively compute digests on files/directories |
9 | | long_description \ |
10 | | md5deep is a cross-platform set of programs to recursively compute \ |
11 | | MD5, SHA-1, or SHA-256 message digests on an arbitrary number of files. |
| 3 | PortSystem 1.0 |
| 4 | name md5deep |
| 5 | version 1.12 |
| 6 | categories security sysutils |
| 7 | maintainers blb@opendarwin.org |
| 8 | description Recursively compute digests on files/directories |
| 9 | long_description md5deep is a cross-platform set of programs to recursively \ |
| 10 | compute MD5, SHA-1, or SHA-256 message digests on an \ |
| 11 | arbitrary number of files. |
12 | 12 | |
13 | | platforms darwin |
| 13 | platforms darwin |
14 | 14 | |
15 | | homepage http://md5deep.sourceforge.net/ |
16 | | master_sites sourceforge |
| 15 | homepage http://md5deep.sourceforge.net/ |
| 16 | master_sites sourceforge |
17 | 17 | |
18 | | checksums md5 180b2df1d62de90ac76abc26e88438c0 |
| 18 | checksums md5 a86d2d2b25b8dfd4cee7a130ef388b28 |
19 | 19 | |
20 | | use_configure no |
| 20 | use_configure no |
21 | 21 | |
22 | | destroot.destdir BIN=${destroot}${prefix}/bin \ |
23 | | MAN=${destroot}${prefix}/share/man/man1 |
| 22 | destroot.destdir BIN=${destroot}${prefix}/bin \ |
| 23 | MAN=${destroot}${prefix}/share/man/man1 |
24 | 24 | |
25 | 25 | post-destroot { |
26 | | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
27 | | xinstall -m 644 -W ${worksrcpath} CHANGES README \ |
28 | | ${destroot}${prefix}/share/doc/${name} |
| 26 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
| 27 | xinstall -m 644 -W ${worksrcpath} CHANGES README \ |
| 28 | ${destroot}${prefix}/share/doc/${name} |
29 | 29 | } |
30 | 30 | |
31 | 31 | variant darwin { |
32 | | build.target mac |
| 32 | build.target mac |
33 | 33 | } |
34 | | |