Ticket #20789: Portfile

File Portfile, 2.7 KB (added by drkp (Dan Ports), 15 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$
3PortSystem          1.0
4name                org-mode
5version             6.31a
6categories          editors
7maintainers         ambulatoryclam.net:dports
8platforms           darwin
9
10description         an Emacs Mode for Notes, Project Planning, and Authoring
11long_description    Org is a mode for keeping notes, maintaining TODO lists, \
12                    and doing project planning with a fast and effective     \
13                    plain-text system.                                       \
14                                                                             \
15                    Org develops organizational tasks around NOTES files     \
16                    that contain lists or information about projects as      \
17                    plain text. Org is implemented on top of Outline mode,   \
18                    which makes it possible to keep the content of large     \
19                    files well structured. Visibility cycling and structure  \
20                    editing help to work with the tree. Tables are easily    \
21                    created with a built-in table editor. Org supports TODO  \
22                    items, deadlines, timestamps, and scheduling. It         \
23                    dynamically compiles entries into an agenda that         \
24                    utilizes and smoothly integrates much of the Emacs       \
25                    calendar and diary. Plain text URL-like links connect    \
26                    to websites, emails, Usenet messages, BBDB entries, and  \
27                    any files related to the projects. For printing and      \
28                    sharing of notes, an Org file can be exported as a       \
29                    structured ASCII file, as HTML, or (TODO and agenda      \
30                    items only) as an iCalendar file. It can also serve as   \
31                    a publishing tool for a set of linked web pages.         \
32
33homepage            http://orgmode.org/
34master_sites        http://orgmode.org/
35distname            org-${version}
36
37checksums           md5     b0fd1493770f1487b327c13e05d38ea8 \
38                    sha1    089e64f6eaa370808135a0bdfe429e643777f452 \
39                    rmd160  dbabe49f94fc1371fb32db8209696efeaf6a2ddb
40
41depends_lib         port:emacs
42depends_build       port:texinfo
43
44use_configure       no
45
46destroot.args       prefix=${destroot}${prefix}
47destroot.target     install-lisp install-info
48# rename info file to avoid conflict with the one installed by emacs port
49post-destroot       { move ${destroot}${prefix}/share/info/org \
50                           ${destroot}${prefix}/share/info/org.${version} }