Gentoo Archives: gentoo-dev

From: Torsten Veller <tove@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] Re: gentoo-x86 commit in mail-filter/mailfilter: ChangeLog mailfilter-0.8.2.ebuild
Date: Tue, 03 Aug 2010 06:53:34
Message-Id: 20100803084602.TAb0b04e.tv@veller.net
1 > EAPI=2
2 > -
3 > inherit eutils
4 >
5 > DESCRIPTION="Mailfilter is a utility to get rid of unwanted spam mails"
6 > @@ -19,16 +18,16 @@
7 > RDEPEND=""
8 >
9 > src_prepare() {
10 > - epatch "${FILESDIR}"/0.8.2-gcc44.patch
11 > + epatch "${FILESDIR}"/0.8.2-gcc44.patch \
12 > + "${FILESDIR}"/0.8.2-openssl-1.patch
13 > }
14 >
15 > src_compile() {
16 > - # bug #281069
17 > - emake -j1 || die "emake failed"
18 > + emake -j1 || die #281069
19 > }
20 >
21 > src_install() {
22 > - emake DESTDIR="${D}" install || die "make install failed"
23 > + emake DESTDIR="${D}" install || die
24 > dodoc INSTALL doc/FAQ "${FILESDIR}"/rcfile.example{1,2} \
25 > - README THANKS ChangeLog AUTHORS NEWS || die "doc failed"
26 > + README THANKS ChangeLog AUTHORS NEWS || die
27 > }
28
29 Etiquette policy <http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=3&chap=2>:
30 | Respect developers' coding preferences. Unnecessarily changing the
31 | syntax of an ebuild increases the load on the CVS server and can cause
32 | complications for others. Syntax changes should only be done if there is
33 | a real benefit, such as faster compilation, improved information for the
34 | end user, or compliance to Gentoo policies.
35
36 If you are not the maintainer, don't quote any policy compliance in
37 ChangeLog, I think this is a breach of the etiquette policy.
38
39 Thanks