Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/altermime: ChangeLog altermime-0.3.10.ebuild
Date: Mon, 03 May 2010 16:59:40
Message-Id: 20100503165936.304462C36A@corvid.gentoo.org
1 patrick 10/05/03 16:59:36
2
3 Modified: ChangeLog
4 Added: altermime-0.3.10.ebuild
5 Log:
6 Bump for #317955 with compile fix by Kerin Millar
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 net-mail/altermime/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/altermime/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/altermime/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/altermime/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-mail/altermime/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 14 Jul 2007 12:08:58 -0000 1.14
23 +++ ChangeLog 3 May 2010 16:59:35 -0000 1.15
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-mail/altermime
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-mail/altermime/ChangeLog,v 1.14 2007/07/14 12:08:58 tove Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-mail/altermime/ChangeLog,v 1.15 2010/05/03 16:59:35 patrick Exp $
30 +
31 +*altermime-0.3.10 (03 May 2010)
32 +
33 + 03 May 2010; Patrick Lauer <patrick@g.o> +altermime-0.3.10.ebuild,
34 + +files/altermime-0.3.10-fprintf-fixes.patch:
35 + Bump for #317955 with compile fix by Kerin Millar
36
37 *altermime-0.3.8 (14 Jul 2007)
38
39
40
41
42 1.1 net-mail/altermime/altermime-0.3.10.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/altermime/altermime-0.3.10.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/altermime/altermime-0.3.10.ebuild?rev=1.1&content-type=text/plain
46
47 Index: altermime-0.3.10.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-mail/altermime/altermime-0.3.10.ebuild,v 1.1 2010/05/03 16:59:35 patrick Exp $
52
53 inherit toolchain-funcs eutils
54
55 DESCRIPTION=" alterMIME is a small program which is used to alter your mime-encoded mailpacks"
56 SRC_URI="http://www.pldaniels.com/altermime/${P}.tar.gz"
57 HOMEPAGE="http://pldaniels.com/altermime/"
58
59 LICENSE="Sendmail"
60 KEYWORDS="~amd64 ~ppc ~s390 ~x86"
61 IUSE=""
62 SLOT="0"
63
64 src_unpack() {
65 unpack ${A}
66 sed -i -e "/^CFLAGS[[:space:]]*=/ s/-O2/${CFLAGS}/" \
67 -e 's/${CFLAGS} altermime.c/${CFLAGS} ${LDFLAGS} altermime.c/' \
68 "${S}"/Makefile || die "sed failed."
69 epatch "${FILESDIR}/${P}-fprintf-fixes.patch"
70 }
71
72 src_compile() {
73 emake CC="$(tc-getCC)" || die "emake failed."
74 }
75
76 src_install () {
77 dobin altermime || die "dobin failed."
78 dodoc CHANGELOG LICENCE README || die "dodoc failed."
79 }