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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name rcs |
---|
7 | version 5.8.2 |
---|
8 | revision 0 |
---|
9 | description Revision Control System |
---|
10 | long_description The Revision Control System (RCS) manages multiple \ |
---|
11 | revisions of files. RCS automates the storing, retrieval, \ |
---|
12 | logging, identification, and merging of revisions. RCS is \ |
---|
13 | useful for text that is revised frequently, including \ |
---|
14 | source code, programs, documentation, graphics, papers, \ |
---|
15 | and form letters. |
---|
16 | |
---|
17 | maintainers nomaintainer |
---|
18 | categories devel |
---|
19 | license GPL-3+ |
---|
20 | installs_libs no |
---|
21 | platforms darwin |
---|
22 | homepage http://www.gnu.org/software/${name}/ |
---|
23 | master_sites gnu |
---|
24 | |
---|
25 | checksums rmd160 41b3fdd4f2a7d65f0a271f6c70dc4ba9078a4261 \ |
---|
26 | sha256 ea00bd5e0d0317d3388dd78c9b3a9381d7d1cce59d686aec60f41eb633c693dc |
---|
27 | |
---|
28 | |
---|
29 | use_autoreconf yes |
---|
30 | autoreconf.args -fvi |
---|
31 | |
---|
32 | configure.env-append FORCE_UNSAFE_CONFIGURE=1 |
---|
33 | |
---|
34 | set docdir ${prefix}/share/doc/${name} |
---|
35 | |
---|
36 | post-destroot { |
---|
37 | xinstall -m 0755 -d ${destroot}${docdir} |
---|
38 | xinstall -m 0644 -W ${worksrcpath} AUTHORS ChangeLog COPYING NEWS README THANKS \ |
---|
39 | ${destroot}${docdir} |
---|
40 | } |
---|