Ticket #26139: Portfile

File Portfile, 1.6 KB (added by tvb377@…, 14 years ago)

now with something in homepage

Line 
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
4PortSystem              1.0
5
6name                    buffer
7version                 1.19
8categories              sysutils
9platforms               darwin
10maintainers             v9g.de:tvb377
11
12description             Reblocking buffer for tape writes
13
14long_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
22homepage                gd.tuwien.ac.at/utils/archivers/buffer
23master_sites            http://ftp.roedu.net/pub/mirrors/gentoo.org/distfiles
24extract.suffix          .tgz
25use_configure           no
26
27checksums               md5     ef1f84473adb3bc2870dd5b0ad4ea82a \
28                        sha1    acb7c516c8fc41d7356db673057e34506fab7c23 \
29                        rmd160  f520d63aa3da22b505f8ecbcb779e6c59508918a
30
31patchfiles              buffer-patch
32
33destroot {
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}