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 buffer |
---|
7 | version 1.19 |
---|
8 | categories sysutils |
---|
9 | platforms darwin |
---|
10 | maintainers v9g.de:tvb377 |
---|
11 | |
---|
12 | description Reblocking buffer for tape writes |
---|
13 | |
---|
14 | long_description This is a program designed to speed up writing tapes. \ |
---|
15 | The program splits itself into two processes. The first process reads \ |
---|
16 | (and reblocks) from stdin into a shared memory buffer. The second \ |
---|
17 | writes from the shared memory buffer to stdout. Doing it this way \ |
---|
18 | means that the writing side effectly sits in a tight write loop and \ |
---|
19 | doesn't have to wait for input. Similarly for the input side. It is \ |
---|
20 | this waiting that slows down other reblocking processes, like dd. |
---|
21 | |
---|
22 | homepage gd.tuwien.ac.at/utils/archivers/buffer |
---|
23 | master_sites http://ftp.roedu.net/pub/mirrors/gentoo.org/distfiles |
---|
24 | extract.suffix .tgz |
---|
25 | use_configure no |
---|
26 | |
---|
27 | checksums md5 ef1f84473adb3bc2870dd5b0ad4ea82a \ |
---|
28 | sha1 acb7c516c8fc41d7356db673057e34506fab7c23 \ |
---|
29 | rmd160 f520d63aa3da22b505f8ecbcb779e6c59508918a |
---|
30 | |
---|
31 | patchfiles buffer-patch |
---|
32 | |
---|
33 | destroot { |
---|
34 | xinstall -s -m 555 ${worksrcpath}/buffer ${destroot}${prefix}/bin |
---|
35 | xinstall -m 444 ${worksrcpath}/buffer.man ${destroot}${prefix}/share/man/man1/buffer.1 |
---|
36 | } |
---|