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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name bbdb |
---|
7 | version 2.35 |
---|
8 | categories www |
---|
9 | platforms darwin |
---|
10 | maintainers yahoo.com:vishketan |
---|
11 | license GPL-2+ |
---|
12 | supported_archs noarch |
---|
13 | |
---|
14 | description The Insidious Big Brother Database |
---|
15 | |
---|
16 | long_description The Insidious Big Brother Database (BBDB) is a contact \ |
---|
17 | management utility. It is tightly integrated with \ |
---|
18 | several mail and news readers, allowing it to create \ |
---|
19 | database entries directly from mail and news messages. \ |
---|
20 | As is usual with applications for Emacs, this record \ |
---|
21 | creation can be configured in many ways, ranging from \ |
---|
22 | a boolean create/don't create setting to creation \ |
---|
23 | based on the result of a user-supplied function.\ |
---|
24 | Database records can be used to store many types of \ |
---|
25 | information, from name and address to URLs and X-Face \ |
---|
26 | images. This information can be displayed when a \ |
---|
27 | message from an entity named in a database record is \ |
---|
28 | received. In addition, messages from database members \ |
---|
29 | can be tagged in the Gnus Summary Buffer, and Gnus \ |
---|
30 | scoring can be configured based on the contents of \ |
---|
31 | database records. Supercite citations can even be \ |
---|
32 | preset through the use of records in the BBDB. |
---|
33 | |
---|
34 | homepage http://bbdb.sourceforge.net/ |
---|
35 | master_sites sourceforge:project/bbdb/bbdb/${version} |
---|
36 | |
---|
37 | depends_lib port:emacs |
---|
38 | |
---|
39 | depends_build port:texinfo |
---|
40 | |
---|
41 | checksums md5 5c4e7f2b2a6a8e25ff77351f533f3910\ |
---|
42 | sha1 7524dd2b3951b4635c606e673c97b85c9cf0621c\ |
---|
43 | rmd160 efa04f4ea1428f591bd20738f8c7d0c5f3a919e8 |
---|
44 | |
---|
45 | configure.pre_args --prefix=${destroot}${prefix} |
---|
46 | |
---|
47 | configure.args --infodir=${destroot}${prefix}/share/info |
---|
48 | |
---|
49 | variant emacs_app description {Use emacs-app instead of emacs} { |
---|
50 | depends_lib-append port:emacs-app |
---|
51 | depends_lib-delete port:emacs |
---|
52 | configure.args-append --with-emacs=${applications_dir}/Emacs.app/Contents/MacOS/Emacs |
---|
53 | } |
---|
54 | |
---|
55 | use_parallel_build no |
---|
56 | |
---|
57 | destroot { |
---|
58 | xinstall -m 755 -d ${destroot}${prefix}/share/emacs/site-lisp/${name} |
---|
59 | eval xinstall -m 644 [glob ${worksrcpath}/lisp/*.el*] \ |
---|
60 | ${destroot}${prefix}/share/emacs/site-lisp/${name} |
---|
61 | |
---|
62 | eval xinstall -m 644 [glob ${worksrcpath}/texinfo/*.info*] \ |
---|
63 | ${destroot}${prefix}/share/info/ |
---|
64 | |
---|
65 | # Need to set TeX search path |
---|
66 | eval xinstall -m 644 [glob ${worksrcpath}/tex/*.tex] \ |
---|
67 | ${destroot}${prefix}/share/emacs/site-lisp/${name} |
---|
68 | } |
---|
69 | |
---|
70 | post-activate { |
---|
71 | system "${prefix}/bin/install-info ${prefix}/share/info/bbdb.info ${prefix}/share/info/dir" |
---|
72 | } |
---|
73 | |
---|
74 | pre-deactivate { |
---|
75 | system "${prefix}/bin/install-info --delete ${prefix}/share/info/bbdb.info ${prefix}/share/info/dir" |
---|
76 | } |
---|
77 | |
---|
78 | notes " |
---|
79 | To use bbdb, put the following in your ~/.emacs: |
---|
80 | |
---|
81 | (require 'bbdb) |
---|
82 | (bbdb-initialize) |
---|
83 | |
---|
84 | Then you can use bbdb by typing M-x bbdb |
---|
85 | " |
---|