Changeset 24723
- Timestamp:
- 05/01/07 11:58:52 (19 months ago)
- Files:
-
- 1 modified
-
trunk/dports/devel/expect/Portfile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/devel/expect/Portfile
r22478 r24723 6 6 version 5.43.0 7 7 set shortversion 5.43 8 revision 28 revision 3 9 9 platforms darwin 10 10 categories devel 11 maintainers nomaintainer@macports.org12 description an automating and testing tool11 maintainers markd@macports.org 12 description An automating and testing tool 13 13 long_description Expect is a tool for automating interactive applications \ 14 14 such as telnet, ftp, passwd, fsck, rlogin, tip, etc. \ … … 19 19 master_sites http://expect.nist.gov/src/:exp \ 20 20 http://expect.nist.gov/old/:exp \ 21 http://www.opendarwin.org/~markd/:tclpheaders 21 sourceforge:tcl:tcl 22 23 # Set tclv and md5 checksum to the current MacPorts Tcl port version, though port doesn't 24 # break if they aren't in sync. 25 26 set tclv 8.4.14 22 27 23 28 distfiles ${distname}.tar.gz:exp \ 24 tcl8.4.12-privateheaders-full.tar.gz:tclpheaders29 tcl${tclv}-src.tar.gz:tcl 25 30 checksums ${distname}.tar.gz md5 43e1dc0e0bc9492cf2e1a6f59f276bc3 \ 26 tcl8.4.12-privateheaders-full.tar.gz md5 ec9b85fad111b51b746fe45a2dc1e8fb31 tcl${tclv}-src.tar.gz md5 51c6bf74d3ffdb0bd866ecdac6ff6460 27 32 28 33 depends_build port:tcl … … 33 38 --mandir=${prefix}/share/man \ 34 39 --with-tcl="${prefix}/lib" \ 35 --with-tclinclude="${workpath}/tcl 8.4.12-privateheaders-full"40 --with-tclinclude="${workpath}/tcl${tclv}/generic/" 36 41 37 42 test.run yes … … 42 47 post-destroot { cd ${destroot}${prefix}/lib 43 48 system "ln -s libexpect${shortversion}.a libexpect.a" 49 50 file mkdir ${destroot}${prefix}/share/doc/${name}/examples 51 eval xinstall -m 644 [glob ${worksrcpath}/example/*] \ 52 ${destroot}${prefix}/share/doc/${name}/examples 53 54 xinstall -m 644 -W ${worksrcpath} ChangeLog FAQ INSTALL NEWS README \ 55 ${destroot}${prefix}/share/doc/${name} 44 56 } 45 57

