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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name color-theme-mode.el |
---|
7 | version 6.6.0 |
---|
8 | categories editors |
---|
9 | maintainers nomaintainer |
---|
10 | description color-theme is an emacs-lisp mode for skinning your emacs |
---|
11 | long_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 | |
---|
18 | distname color-theme-${version} |
---|
19 | |
---|
20 | homepage http://www.nongnu.org/color-theme/ |
---|
21 | |
---|
22 | master_sites http://www.very-clever.com/download/nongnu/color-theme/ |
---|
23 | checksums md5 a4de73c236a6af11ab378bfe18dabcca \ |
---|
24 | sha1 047d6cb207fdef66b25343479ebe09a1ed3954b5 \ |
---|
25 | rmd160 82a2c75a65f50f9c5e6d5193c3f768824c6c1549 |
---|
26 | |
---|
27 | depends_lib port:emacs |
---|
28 | |
---|
29 | worksrcdir ${distname} |
---|
30 | |
---|
31 | use_configure no |
---|
32 | build {} |
---|
33 | destroot { file mkdir ${destroot}${prefix}/share/emacs/site-lisp |
---|
34 | file copy ${workpath}/${worksrcdir} \ |
---|
35 | ${destroot}${prefix}/share/emacs/site-lisp |
---|
36 | } |
---|
37 | |
---|
38 | post-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 | |
---|
49 | livecheck.check regex |
---|
50 | livecheck.url ${homepage} |
---|
51 | livecheck.regex "Current stable release is (\\d+(?:\\.\\d+)*)" |
---|