Ticket #22759: Portfile

File Portfile, 1.3 KB (added by drkp (Dan Ports), 14 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: Portfile 59959 2009-10-28 01:10:35Z jmr@macports.org $
3
4PortSystem          1.0
5
6name                org-mode
7version             6.33f
8categories          editors
9maintainers         ambulatoryclam.net:dports
10platforms           darwin
11
12description         an Emacs Mode for Notes, Project Planning, and Authoring
13long_description    Org is a mode for keeping notes, maintaining TODO lists, \
14                    and doing project planning with a fast and effective     \
15                    plain-text system.
16
17homepage            http://orgmode.org/
18master_sites        ${homepage}
19distname            org-${version}
20
21checksums           md5     c057d13dac5d9c6da9bc063273faad82 \
22                    sha1    ed98042f4df4815311b7861ed9e3ba43c3a61b4a \
23                    rmd160  e23cbcbeef2a5d07b35492dca3c9ef132e54c68a
24
25depends_lib         port:emacs
26depends_build       port:texinfo
27
28use_configure       no
29
30destroot.destdir    prefix=${destroot}${prefix}
31destroot.target     install-lisp install-info
32# rename info file to avoid conflict with the one installed by emacs port
33post-destroot       { move ${destroot}${prefix}/share/info/org \
34                           ${destroot}${prefix}/share/info/org.${version} }