Ticket #21344: Portfile

File Portfile, 2.2 KB (added by macports@…, 15 years ago)

Portfile for color-theme-mode.el 6.6.0

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem 1.0
5
6name                    color-theme-mode.el
7version                 6.6.0
8categories              editors
9maintainers             nomaintainer
10description             color-theme is an emacs-lisp mode for skinning your emacs
11long_description    \
12                        color-theme is an emacs-lisp mode for skinning your emacs. Features are:    \
13                            * Huge and extensible theme library                                     \
14                            * Easy to use                                                           \
15                            * Works on pretty all emacs flavours                                    \
16                            * Mature source code
17
18distname            color-theme-${version}
19
20homepage                http://www.nongnu.org/color-theme/
21
22master_sites        http://www.very-clever.com/download/nongnu/color-theme/
23checksums               md5         a4de73c236a6af11ab378bfe18dabcca                \
24                            sha1        047d6cb207fdef66b25343479ebe09a1ed3954b5        \
25                            rmd160      82a2c75a65f50f9c5e6d5193c3f768824c6c1549
26
27depends_lib         port:emacs
28
29worksrcdir          ${distname}
30
31use_configure       no
32build               {}
33destroot            {   file mkdir ${destroot}${prefix}/share/emacs/site-lisp
34                        file copy  ${workpath}/${worksrcdir}  \
35                        ${destroot}${prefix}/share/emacs/site-lisp
36}
37
38post-activate       {   ui_msg "To use this, put the following into your ~/.emacs:"
39                            ui_msg "(add-to-list 'load-path \"${prefix}/share/emacs/site-lisp/${distname}\")"
40                        ui_msg "(require 'color-theme)"
41                        ui_msg "(eval-after-load \"color-theme\""
42                        ui_msg "    '(progn"
43                        ui_msg "        (color-theme-initialize)"
44                        ui_msg "        (color-theme-hober)))"
45                            ui_msg " "
46                        ui_msg "Then you can choose your color-theme theme by issuing M-x color-theme-<TAB> RET"
47}
48
49livecheck.check     regex
50livecheck.url       ${homepage}
51livecheck.regex     "Current stable release is (\\d+(?:\\.\\d+)*)"