diff --git a/dports/archivers/afio/Portfile b/dports/archivers/afio/Portfile
index 94ae403..63aeffc 100644
a
|
b
|
|
1 | 1 | # $Id$ |
2 | 2 | |
3 | | PortSystem 1.0 |
4 | | |
5 | | name afio |
6 | | version 2.5 |
7 | | revision 1 |
8 | | categories archivers |
9 | | platforms darwin |
10 | | maintainers puffin.lb.shuttle.de:michael.klein |
11 | | description Archiver & backup program with builtin compression |
12 | | |
13 | | long_description Afio makes cpio-format archives. It deals somewhat \ |
14 | | gracefully with input data corruption, supports \ |
15 | | multi-volume archives during interactive operation, and \ |
16 | | can make compressed archives that are much safer than \ |
17 | | compressed tar or cpio archives. Afio is best used as \ |
18 | | an `archive engine' in a backup script. |
| 3 | PortSystem 1.0 |
| 4 | |
| 5 | name afio |
| 6 | version 2.5.1 |
| 7 | categories archivers |
| 8 | platforms darwin |
| 9 | maintainers puffin.lb.shuttle.de:michael.klein |
| 10 | description Archiver & backup program with builtin compression |
| 11 | |
| 12 | long_description Afio makes cpio-format archives. It deals somewhat \ |
| 13 | gracefully with input data corruption, supports \ |
| 14 | multi-volume archives during interactive operation, and \ |
| 15 | can make compressed archives that are much safer than \ |
| 16 | compressed tar or cpio archives. Afio is best used as \ |
| 17 | an `archive engine' in a backup script. |
19 | 18 | |
20 | 19 | homepage http://freecode.com/projects/afio/ |
21 | 20 | master_sites http://members.brabant.chello.nl/~k.holtman \ |
22 | 21 | http://www.ibiblio.org/pub/Linux/system/backup/ |
23 | | extract.suffix .tgz |
| 22 | extract.suffix .tgz |
24 | 23 | |
25 | | checksums md5 8c6665e0f875dcd8e1bdb18644b59688 \ |
26 | | sha1 051765f209fded60f94944da8a76ae37c3423a23 \ |
27 | | rmd160 991bdb794ee8b4b7e6a737afa85009aae925699d |
| 24 | checksums sha256 363457a5d6ee422d9b704ef56d26369ca5ee671d7209cfe799cab6e30bf2b99a \ |
| 25 | rmd160 923981a9e6766781705ceedecd3d86afa5b9abae |
28 | 26 | |
29 | 27 | post-patch { |
30 | 28 | reinplace -E "s|/usr(/local)?|\$(DESTDIR)${prefix}|" ${worksrcpath}/Makefile |
… |
… |
configure { |
38 | 36 | post-destroot { |
39 | 37 | set docdir ${prefix}/share/doc/${name}-${version} |
40 | 38 | xinstall -d ${destroot}${docdir} |
41 | | xinstall -m 0644 -W ${worksrcpath} ANNOUNCE-2.5 HISTORY README SCRIPTS \ |
42 | | ${destroot}${docdir} |
| 39 | xinstall -m 0644 -W ${worksrcpath} ANNOUNCE-${version} HISTORY README SCRIPTS ${destroot}${docdir} |
43 | 40 | } |
44 | 41 | |
45 | | build.target afio |
| 42 | build.target afio |
46 | 43 | |