Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-mta/exim: ChangeLog exim-4.69-r2.ebuild exim-4.69.ebuild
Date: Thu, 02 Jul 2009 20:17:38
Message-Id: E1MMShS-0007vr-UM@stork.gentoo.org
1 grobian 09/07/02 20:16:06
2
3 Modified: ChangeLog exim-4.69-r2.ebuild exim-4.69.ebuild
4 Log:
5 Don't use hardcoded gcc, bug #244150, drop doins for auth_conf.sub, it's nowhere to be found.
6 (Portage version: 2.2.00.13755-prefix/cvs/Darwin powerpc)
7
8 Revision Changes Path
9 1.135 mail-mta/exim/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?rev=1.135&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?rev=1.135&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/ChangeLog?r1=1.134&r2=1.135
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v
18 retrieving revision 1.134
19 retrieving revision 1.135
20 diff -u -r1.134 -r1.135
21 --- ChangeLog 2 Jul 2009 19:58:07 -0000 1.134
22 +++ ChangeLog 2 Jul 2009 20:16:06 -0000 1.135
23 @@ -1,6 +1,11 @@
24 # ChangeLog for mail-mta/exim
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.134 2009/07/02 19:58:07 grobian Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.135 2009/07/02 20:16:06 grobian Exp $
28 +
29 + 02 Jul 2009; Fabian Groffen <grobian@g.o> exim-4.69.ebuild,
30 + exim-4.69-r2.ebuild:
31 + Don't use hardcoded gcc, bug #244150, drop doins for auth_conf.sub, it's
32 + nowhere to be found.
33
34 02 Jul 2009; Fabian Groffen <grobian@g.o> exim-4.69.ebuild,
35 -exim-4.69-r1.ebuild, exim-4.69-r2.ebuild, metadata.xml:
36
37
38
39 1.3 mail-mta/exim/exim-4.69-r2.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild?r1=1.2&r2=1.3
44
45 Index: exim-4.69-r2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- exim-4.69-r2.ebuild 2 Jul 2009 19:58:07 -0000 1.2
52 +++ exim-4.69-r2.ebuild 2 Jul 2009 20:16:06 -0000 1.3
53 @@ -1,8 +1,8 @@
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v 1.2 2009/07/02 19:58:07 grobian Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69-r2.ebuild,v 1.3 2009/07/02 20:16:06 grobian Exp $
58
59 -inherit eutils
60 +inherit eutils toolchain-funcs
61
62 IUSE="tcpd ssl postgres mysql ldap pam exiscan-acl mailwrapper lmtp ipv6 sasl dnsdb perl mbx X exiscan nis syslog spf srs gnutls sqlite dovecot-sasl radius domainkeys maildir logrotate"
63
64 @@ -236,7 +236,8 @@
65 }
66
67 src_compile() {
68 - make || die "make failed"
69 + # build system not parallel-safe at all
70 + emake -j1 CC="$(tc-getCC)" || die "make failed"
71 }
72
73 src_install () {
74 @@ -286,7 +287,6 @@
75 newins "${S}"/src/configure.default exim.conf.exiscan-acl
76 fi
77 doins "$WORKDIR"/system_filter.exim
78 - doins "$DISTDIR"/auth_conf.sub
79 if use exiscan; then
80 newins "${S}"/src/configure.default exim.conf.exiscan
81 doins "${DISTDIR}"/exiscan.conf
82 @@ -315,7 +315,6 @@
83
84 pkg_postinst() {
85 einfo "/etc/exim/system_filter.exim is a sample system_filter."
86 - einfo "/etc/exim/auth_conf.sub contains the configuration sub for using smtp auth."
87 einfo "Please create /etc/exim/exim.conf from /etc/exim/exim.conf.dist."
88
89 if ! use mailwrapper && [[ -e /etc/mailer.conf ]]
90
91
92
93 1.12 mail-mta/exim/exim-4.69.ebuild
94
95 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?rev=1.12&view=markup
96 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?rev=1.12&content-type=text/plain
97 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-mta/exim/exim-4.69.ebuild?r1=1.11&r2=1.12
98
99 Index: exim-4.69.ebuild
100 ===================================================================
101 RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v
102 retrieving revision 1.11
103 retrieving revision 1.12
104 diff -u -r1.11 -r1.12
105 --- exim-4.69.ebuild 2 Jul 2009 19:58:07 -0000 1.11
106 +++ exim-4.69.ebuild 2 Jul 2009 20:16:06 -0000 1.12
107 @@ -1,8 +1,8 @@
108 # Copyright 1999-2009 Gentoo Foundation
109 # Distributed under the terms of the GNU General Public License v2
110 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v 1.11 2009/07/02 19:58:07 grobian Exp $
111 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.69.ebuild,v 1.12 2009/07/02 20:16:06 grobian Exp $
112
113 -inherit eutils
114 +inherit eutils toolchain-funcs
115
116 IUSE="tcpd ssl postgres mysql ldap pam exiscan-acl mailwrapper lmtp ipv6 sasl dnsdb perl mbx mbox X exiscan nis syslog spf srs gnutls sqlite dovecot-sasl radius domainkeys"
117
118 @@ -231,7 +231,7 @@
119 }
120
121 src_compile() {
122 - make || die "make failed"
123 + emake -j1 CC="$(tc-getCC)" || die "make failed"
124 }
125
126 src_install () {
127 @@ -281,7 +281,6 @@
128 newins "${S}"/src/configure.default exim.conf.exiscan-acl
129 fi
130 doins "${FILESDIR}"/system_filter.exim
131 - doins "${FILESDIR}"/auth_conf.sub
132 if use exiscan; then
133 newins "${S}"/src/configure.default exim.conf.exiscan
134 doins "${FILESDIR}"/exiscan.conf
135 @@ -304,7 +303,6 @@
136
137 pkg_postinst() {
138 einfo "/etc/exim/system_filter.exim is a sample system_filter."
139 - einfo "/etc/exim/auth_conf.sub contains the configuration sub for using smtp auth."
140 einfo "Please create /etc/exim/exim.conf from /etc/exim/exim.conf.dist."
141
142 if ! use mailwrapper && [[ -e /etc/mailer.conf ]]