1 | # Copyright 1999-2010 Gentoo Foundation |
---|
2 | # Distributed under the terms of the GNU General Public License v2 |
---|
3 | # $Header: /var/cvsroot/gentoo-x86/www-apps/trac-webadmin/trac-webadmin-0.1.2.ebuild,v 1.4 2007/02/13 20:39:33 corsair Exp $ |
---|
4 | |
---|
5 | EAPI="2" |
---|
6 | PYTHON_DEPEND="2" |
---|
7 | SUPPORT_PYTHON_ABIS="1" |
---|
8 | RESTRICT_PYTHON_ABIS="3.*" |
---|
9 | |
---|
10 | inherit distutils subversion |
---|
11 | |
---|
12 | ESVN_REPO_URI="https://svn.mayastudios.de/mtpp/repos/plugins/subscriberlist/trunk/" |
---|
13 | DESCRIPTION="This plugin displays a list of users that will informed about ticket changes" |
---|
14 | HOMEPAGE="https://svn.mayastudios.de/mtpp/wiki/Plugins/SubscriberListPlugin" |
---|
15 | |
---|
16 | LICENSE="trac" |
---|
17 | KEYWORDS="~amd64 ~arm ~ppc64 ~x86" |
---|
18 | IUSE="" |
---|
19 | |
---|
20 | SLOT="0" |
---|
21 | |
---|
22 | DEPEND="dev-python/setuptools" |
---|
23 | RDEPEND=">=www-apps/trac-0.12" |
---|
24 | |
---|
25 | pkg_postinst() { |
---|
26 | elog "To enable the FullBlogPlugin plugin in your Trac environments, you have to add:" |
---|
27 | elog " [notification]" |
---|
28 | elog " always_notify_owner = true" |
---|
29 | elog " always_notify_reporter = true" |
---|
30 | elog "" |
---|
31 | elog " ; Allow updaters to decide whether they'll be notified about ticket changes or" |
---|
32 | elog " ; not. They can control this by adding or removing themselve from the CC list." |
---|
33 | elog " ; NOTE: This may change in the future where every use will be able to decided" |
---|
34 | elog " ; when it's going be notified. See http://trac.edgewall.org/ticket/2247#comment:5" |
---|
35 | elog " always_notify_updater = false" |
---|
36 | elog "" |
---|
37 | elog " ; Don't notify about own changes (only with the no_self_notification patch (202))." |
---|
38 | elog " notify_own_changes = false" |
---|
39 | elog "" |
---|
40 | elog " ; Disabling this option puts all recipients of notifications in BCC (instead of" |
---|
41 | elog " ; TO or CC). This may lead to an empty "TO" header field ("undisclosed-recipients")" |
---|
42 | elog " ; which is, however, not a problem and perfectly normal." |
---|
43 | elog " use_public_cc = false" |
---|
44 | elog "" |
---|
45 | elog "to your trac.ini files." |
---|
46 | } |
---|