Ticket #28107: Portfile.new

File Portfile.new, 1.2 KB (added by jking+macports@…, 13 years ago)
Line 
1# $Id:$
2
3PortSystem      1.0
4name            robodoc
5version         4.99.40
6categories      devel
7platforms       darwin
8maintainers     nomaintainer
9homepage        http://www.xs4all.nl/~rfsber/Robo/${name}.html
10description     Bot used to document source code.
11
12long_description ROBODoc can be used to document functions, methods, classes, \
13                 variables, makefile entries, system tests, and anything else \
14                 you can think of. ROBODoc works with any language that       \
15                 supports reasonable comments, and uses a syntax similar to   \
16                 that of the old Amiga ``Autodocs'' program.
17
18
19master_sites    http://www.xs4all.nl/~rfsber/Robo/
20
21checksums       sha1   1bb3d4ace868b63a573b16fb5ac13bdbbf43e2ae \
22                rmd160 14b0a6649bfe84fcf7f12df65b19c2bfb174c043
23
24configure.args  --mandir="${prefix}/share/man"
25
26destroot.destdir    prefix="${destroot}${prefix}" \
27                    docdir="${destroot}${prefix}/share/doc/${name}" \
28                    mandir="${destroot}${prefix}/share/man"
29
30post-destroot {
31    reinplace   "s|/usr/share|${prefix}/share/doc|" \
32                "${destroot}${prefix}/share/man/man1/robodoc.1"
33}