Ticket #38647: rcs-5.8.2-Portfile

File rcs-5.8.2-Portfile, 1.4 KB (added by mikebryniarski (Michael Bryniarski), 11 years ago)
Line 
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
4PortSystem          1.0
5
6name                rcs
7version             5.8.2
8revision            0
9description         Revision Control System
10long_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
17maintainers         nomaintainer
18categories          devel
19license             GPL-3+
20installs_libs       no
21platforms           darwin
22homepage            http://www.gnu.org/software/${name}/
23master_sites        gnu
24
25checksums           rmd160  41b3fdd4f2a7d65f0a271f6c70dc4ba9078a4261 \
26                    sha256  ea00bd5e0d0317d3388dd78c9b3a9381d7d1cce59d686aec60f41eb633c693dc
27
28
29use_autoreconf      yes
30autoreconf.args     -fvi
31
32configure.env-append    FORCE_UNSAFE_CONFIGURE=1
33
34set docdir          ${prefix}/share/doc/${name}
35
36post-destroot {
37    xinstall -m 0755 -d ${destroot}${docdir}
38    xinstall -m 0644 -W ${worksrcpath} AUTHORS ChangeLog COPYING NEWS README THANKS \
39        ${destroot}${docdir}
40}