Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/smtptools: smtptools-0.2.3.ebuild ChangeLog
Date: Thu, 23 Jan 2014 01:35:08
Message-Id: 20140123013502.E00192004C@flycatcher.gentoo.org
1 vapier 14/01/23 01:35:02
2
3 Modified: smtptools-0.2.3.ebuild ChangeLog
4 Log:
5 Modernize the build to fix cross-compiling.
6
7 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
8
9 Revision Changes Path
10 1.15 net-mail/smtptools/smtptools-0.2.3.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/smtptools/smtptools-0.2.3.ebuild?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/smtptools/smtptools-0.2.3.ebuild?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/smtptools/smtptools-0.2.3.ebuild?r1=1.14&r2=1.15
15
16 Index: smtptools-0.2.3.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-mail/smtptools/smtptools-0.2.3.ebuild,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- smtptools-0.2.3.ebuild 18 Jan 2014 05:37:54 -0000 1.14
23 +++ smtptools-0.2.3.ebuild 23 Jan 2014 01:35:02 -0000 1.15
24 @@ -1,8 +1,10 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-mail/smtptools/smtptools-0.2.3.ebuild,v 1.14 2014/01/18 05:37:54 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-mail/smtptools/smtptools-0.2.3.ebuild,v 1.15 2014/01/23 01:35:02 vapier Exp $
29
30 -inherit eutils
31 +EAPI="4"
32 +
33 +inherit eutils autotools
34
35 DESCRIPTION="A collection of tools to send or receive mails with SMTP"
36 HOMEPAGE="http://www.ohse.de/uwe/software/smtptools.html"
37 @@ -16,24 +18,10 @@
38 RDEPEND="!net-mail/qtools"
39 DEPEND="${RDEPEND}"
40
41 -src_unpack() {
42 - unpack ${A}
43 - cd "${S}"
44 +src_prepare() {
45 + epatch "${FILESDIR}"/${P}-autotools.patch
46 + mv configure.{in,ac} || die
47 + rm acconfig.h || die
48 epatch "${FILESDIR}"/${P}-cleanups.patch
49 -}
50 -
51 -src_compile() {
52 - # the configure check looks for the symbol name 'dn_expand' in
53 - # libresolv but later glibc's use the internal symbol name
54 - # '__dn_expand' and macro 'dn_expand' to '__dn_expand' in the
55 - # resolv.h header file ... lets force the func to be detected.
56 - ac_cv_lib_resolv_dn_expand="yes" \
57 - econf || die
58 - emake || die
59 -}
60 -
61 -src_install() {
62 - make DESTDIR="${D}" install || die "Installer failed"
63 - dodoc AUTHORS README README.cvs README.smtpblast \
64 - README.tomaildir README.usmtpd TODO
65 + eautoreconf
66 }
67
68
69
70 1.9 net-mail/smtptools/ChangeLog
71
72 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/smtptools/ChangeLog?rev=1.9&view=markup
73 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/smtptools/ChangeLog?rev=1.9&content-type=text/plain
74 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/smtptools/ChangeLog?r1=1.8&r2=1.9
75
76 Index: ChangeLog
77 ===================================================================
78 RCS file: /var/cvsroot/gentoo-x86/net-mail/smtptools/ChangeLog,v
79 retrieving revision 1.8
80 retrieving revision 1.9
81 diff -u -r1.8 -r1.9
82 --- ChangeLog 18 Jan 2014 05:37:54 -0000 1.8
83 +++ ChangeLog 23 Jan 2014 01:35:02 -0000 1.9
84 @@ -1,6 +1,10 @@
85 # ChangeLog for net-mail/smtptools
86 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
87 -# $Header: /var/cvsroot/gentoo-x86/net-mail/smtptools/ChangeLog,v 1.8 2014/01/18 05:37:54 vapier Exp $
88 +# $Header: /var/cvsroot/gentoo-x86/net-mail/smtptools/ChangeLog,v 1.9 2014/01/23 01:35:02 vapier Exp $
89 +
90 + 23 Jan 2014; Mike Frysinger <vapier@g.o>
91 + +files/smtptools-0.2.3-autotools.patch, smtptools-0.2.3.ebuild:
92 + Modernize the build to fix cross-compiling.
93
94 18 Jan 2014; Mike Frysinger <vapier@g.o> smtptools-0.2.3.ebuild:
95 Add arm64 love.