mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
46 lines
1.7 KiB
Tcl
46 lines
1.7 KiB
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
PortGroup github 1.0
|
|
|
|
github.setup ericmandel xpa 2.1.19 v
|
|
# Change github.tarball_from to 'releases' or 'archive' next update
|
|
github.tarball_from tarball
|
|
categories science
|
|
maintainers nomaintainer
|
|
license LGPL-2.1
|
|
|
|
description The XPA messaging system provides seamless communication \
|
|
between many kinds of Unix programs, including X programs and Tcl/Tk \
|
|
programs.
|
|
|
|
long_description XPA provides an easy way for users to communicate with \
|
|
XPA-enabled programs by executing XPA client commands in the shell or \
|
|
by utilizing such commands in scripts. Because XPA works both at the \
|
|
programming level and the shell level, it is a powerful tool for unifying \
|
|
any analysis environment: users and programmers have great flexibility in \
|
|
choosing the best level or levels at which to access XPA services, and \
|
|
client access can be extended or modified easily at any time.
|
|
|
|
homepage http://hea-www.harvard.edu/saord/xpa/
|
|
|
|
checksums rmd160 e30e201d362921e4f10e5c333b0129466c292e73 \
|
|
sha256 c68122e3b7e075af9108e0ee3e882eeef60f60c557bae6f96ec65cee75f4666e \
|
|
size 902523
|
|
|
|
patchfiles patch-Makefile.in.diff
|
|
|
|
destroot.destdir INSTALL_ROOT=${destroot}
|
|
|
|
post-destroot {
|
|
set docdir ${destroot}${prefix}/share/doc/${name}
|
|
xinstall -d ${docdir}
|
|
xinstall -m 644 -W ${worksrcpath} \
|
|
README \
|
|
${docdir}
|
|
xinstall -m 644 -W ${worksrcpath}/doc \
|
|
xpa.pdf \
|
|
xpa.ps \
|
|
${docdir}
|
|
}
|