Ticket #17191: Portfile

File Portfile, 1.5 KB (added by krunk7@…, 15 years ago)

Portfile for Tix

Line 
1PortSystem 1.0
2
3name                      Tix
4version           8.4.3
5categories        x11
6maintainers       jameskyle@ucla.edu
7
8description       This C++ library is intended for scientists and engineers who need to manipulate a variety of types of matrices using standard matrix operations.
9
10long_description        This C++ library is intended for scientists and engineers who need to manipulate a variety of types of matrices using standard matrix operations. Emphasis is on the kind of operations needed in statistical calculations such as least squares, linear equation solve and eigenvalues. It supports matrix types,e.g., Matrix (rectangular matrix), UpperTriangularMatrix, LowerTriangularMatrix, DiagonalMatrix, SymmetricMatrix, BandMatrix, UpperBandMatrix, LowerBandMatrix, SymmetricBandMatrix, IdentityMatrix, RowVector, ColumnVector.
11
12homepage          http://tix.sourceforge.net/
13platforms                     darwin
14master_sites              http://superb-east.dl.sourceforge.net/sourceforge/tix/
15distfiles         ${name}${version}-src.tar.gz
16worksrcdir        ${name}${version}
17checksums                     md5 2b8bf4b10a852264678182652f477e59 \
18                  sha1 285d2f19f907ebad002ee0266f56be620d44f174 \
19                  rmd160 99249c4d7a19fcb8c27f11ab1b3ef6102911409d
20
21depends_lib port:tk \
22            port:tcl
23
24use_parallel_build yes
25
26configure.args --prefix=${prefix} \
27               --with-tk=/opt/local/lib/tkConfig.sh \
28               --with-tcl=/opt/local/lib/tclConfig.sh
29
30pre-build {
31  system "port -f build tcl tk"
32}