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: ChangeLog libmail-0.3-r3.ebuild libmail-0.3-r2.ebuild
Date: Sat, 02 Mar 2013 23:19:22
Message-Id: 20130302231918.B903E2171D@flycatcher.gentoo.org
1 pinkbyte 13/03/02 23:19:18
2
3 Modified: ChangeLog
4 Added: libmail-0.3-r3.ebuild
5 Removed: libmail-0.3-r2.ebuild
6 Log:
7 Revbump for last change
8
9 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
10
11 Revision Changes Path
12 1.10 dev-libs/libmail/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/ChangeLog?rev=1.10&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/ChangeLog?rev=1.10&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/ChangeLog?r1=1.9&r2=1.10
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libmail/ChangeLog,v
21 retrieving revision 1.9
22 retrieving revision 1.10
23 diff -u -r1.9 -r1.10
24 --- ChangeLog 2 Mar 2013 23:18:37 -0000 1.9
25 +++ ChangeLog 2 Mar 2013 23:19:18 -0000 1.10
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/libmail
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmail/ChangeLog,v 1.9 2013/03/02 23:18:37 pinkbyte Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmail/ChangeLog,v 1.10 2013/03/02 23:19:18 pinkbyte Exp $
31 +
32 +*libmail-0.3-r3 (02 Mar 2013)
33 +
34 + 02 Mar 2013; Sergey Popov <pinkbyte@g.o> -libmail-0.3-r2.ebuild,
35 + +libmail-0.3-r3.ebuild:
36 + Revbump for last change
37
38 02 Mar 2013; Sergey Popov <pinkbyte@g.o> libmail-0.3-r2.ebuild:
39 Install missing headers, add ~amd64-linux and ~x86-linux keywords
40
41
42
43 1.1 dev-libs/libmail/libmail-0.3-r3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/libmail-0.3-r3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmail/libmail-0.3-r3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libmail-0.3-r3.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libmail/libmail-0.3-r3.ebuild,v 1.1 2013/03/02 23:19:18 pinkbyte Exp $
53
54 EAPI=5
55
56 AUTOTOOLS_IN_SOURCE_BUILD=1
57 AUTOTOOLS_AUTORECONF=1
58 inherit autotools-utils
59
60 DESCRIPTION="A mail handling library"
61 HOMEPAGE="http://libmail.sourceforge.net"
62 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
63
64 LICENSE="GPL-3"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 IUSE="apop debug gnutls profile sasl static-libs"
68
69 DEPEND="gnutls? ( >=net-libs/gnutls-2 )
70 sasl? ( >=dev-libs/cyrus-sasl-2 )"
71 RDEPEND="${DEPEND}"
72
73 DOCS=( AUTHORS ChangeLog NEWS README TODO )
74
75 # Do not unset user's CFLAGS, bug #454558
76 PATCHES=( "${FILESDIR}/${P}-respect-cflags.patch" )
77
78 src_prepare() {
79 # Drop quotes from ACLOCAL_AMFLAGS otherwise aclocal will fail
80 # see 447760
81 sed -i -e "/ACLOCAL_AMFLAGS/s:\"::g" Makefile.am || die
82 autotools-utils_src_prepare
83 }
84
85 src_configure() {
86 local myeconfargs=(
87 $(use_enable apop)
88 $(use_enable debug)
89 $(use_enable gnutls tls)
90 $(use_enable profile)
91 $(use_enable sasl)
92 )
93 autotools-utils_src_configure
94 }
95
96 src_install() {
97 autotools-utils_src_install
98
99 # headers, that are wrongly skipped from installing
100 insinto /usr/include/libmail
101 doins libmail/libmail_intl.h
102 doins config.h
103 }