Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libmail: libmail-0.3-r2.ebuild ChangeLog
Date: Thu, 31 Jan 2013 13:09:05
Message-Id: 20130131130901.CB4762171D@flycatcher.gentoo.org
1 pinkbyte 13/01/31 13:09:01
2
3 Modified: ChangeLog
4 Added: libmail-0.3-r2.ebuild
5 Log:
6 Revision bump: port to autotools-utils eclass, reorganize CFLAGS sed into patch(fix bug #454380), add USE flags for debug and static libs building(bug #454558)
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.7 dev-libs/libmail/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libmail/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 30 Jan 2013 15:30:00 -0000 1.6
24 +++ ChangeLog 31 Jan 2013 13:09:01 -0000 1.7
25 @@ -1,6 +1,14 @@
26 # ChangeLog for dev-libs/libmail
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmail/ChangeLog,v 1.6 2013/01/30 15:30:00 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmail/ChangeLog,v 1.7 2013/01/31 13:09:01 pinkbyte Exp $
30 +
31 +*libmail-0.3-r2 (31 Jan 2013)
32 +
33 + 31 Jan 2013; Sergey Popov <pinkbyte@g.o> +libmail-0.3-r2.ebuild,
34 + +files/libmail-0.3-respect-cflags.patch:
35 + Revision bump: port to autotools-utils eclass, reorganize CFLAGS sed into
36 + patch(fix bug #454380), add USE flags for debug and static libs building(bug
37 + #454558)
38
39 30 Jan 2013; Agostino Sarubbo <ago@g.o> libmail-0.3-r1.ebuild:
40 Stable for x86, wrt bug #454296
41
42
43
44 1.1 dev-libs/libmail/libmail-0.3-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/libmail-0.3-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/libmail-0.3-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libmail-0.3-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libmail/libmail-0.3-r2.ebuild,v 1.1 2013/01/31 13:09:01 pinkbyte Exp $
54
55 EAPI=5
56
57 AUTOTOOLS_IN_SOURCE_BUILD=1
58 AUTOTOOLS_AUTORECONF=1
59 inherit autotools-utils
60
61 DESCRIPTION="A mail handling library"
62 HOMEPAGE="http://libmail.sourceforge.net"
63 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="apop debug gnutls profile sasl static-libs"
69
70 DEPEND="gnutls? ( >=net-libs/gnutls-2 )
71 sasl? ( >=dev-libs/cyrus-sasl-2 )"
72 RDEPEND="${DEPEND}"
73
74 DOCS=( AUTHORS ChangeLog NEWS README TODO )
75
76 # Do not unset user's CFLAGS, bug #454558
77 PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" )
78
79 src_prepare() {
80 # Drop quotes from ACLOCAL_AMFLAGS otherwise aclocal will fail
81 # see 447760
82 sed -i -e "/ACLOCAL_AMFLAGS/s:\"::g" Makefile.am || die
83 autotools-utils_src_prepare
84 }
85
86 src_configure() {
87 local myeconfargs=(
88 $(use_enable apop)
89 $(use_enable debug)
90 $(use_enable gnutls tls)
91 $(use_enable profile)
92 $(use_enable sasl)
93 )
94 autotools-utils_src_configure
95 }