1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id:$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | name crm114 |
---|
6 | version 20100106 |
---|
7 | categories devel |
---|
8 | platforms darwin |
---|
9 | maintainers pixilla.com:brad |
---|
10 | description CRM114 is a system to examine data streams. |
---|
11 | long_description CRM114 is a system to examine incoming e-mail, \ |
---|
12 | system log streams, data files or other data streams, \ |
---|
13 | and to sort, filter, or alter the incoming files or \ |
---|
14 | data streams according to the users wildest desires. |
---|
15 | homepage http://crm114.sourceforge.net |
---|
16 | master_sites http://crm114.sourceforge.net/tarballs |
---|
17 | distname ${name}-${version}-BlameMichelson.src |
---|
18 | checksums md5 213c0b24a28a6cc0b59abc37e2b88a4b \ |
---|
19 | sha1 621106ff14fa66a5a878a2c8fb0251ec483fc17b \ |
---|
20 | rmd160 b633801c57f501fb4ff893789a807cc2f2bb02d8 |
---|
21 | patchfiles patch-Makefile.diff |
---|
22 | depends_lib port:tre |
---|
23 | configure { |
---|
24 | reinplace "s|@@DESTROOT_PREFIX@@|${destroot}${prefix}|g" \ |
---|
25 | ${worksrcpath}/Makefile |
---|
26 | reinplace "s|@@PREFIX@@|${prefix}|g" \ |
---|
27 | ${worksrcpath}/Makefile |
---|
28 | } |
---|
29 | post-destroot { |
---|
30 | # copy the docs |
---|
31 | xinstall -d -m 0755 ${destroot}${prefix}/share/doc/${name} |
---|
32 | foreach file [glob -directory ${worksrcpath} *.txt *.el README] { |
---|
33 | xinstall -m 0644 $file ${destroot}${prefix}/share/doc/${name} |
---|
34 | } |
---|
35 | # install the examples |
---|
36 | xinstall -d -m 0755 ${destroot}${prefix}/share/doc/${name}/examples |
---|
37 | foreach file [glob -directory ${worksrcpath} *.crm *.mfp *.recipe *.dat] { |
---|
38 | xinstall -m 0644 $file ${destroot}${prefix}/share/doc/${name}/examples |
---|
39 | } |
---|
40 | } |
---|