Gentoo Archives: gentoo-commits

From: "Tobias Scherbaum (dertobi123)" <dertobi123@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libetpan: ChangeLog libetpan-0.56.ebuild
Date: Sun, 07 Sep 2008 16:50:39
Message-Id: E1KcNTA-0006n3-21@stork.gentoo.org
1 dertobi123 08/09/07 16:50:36
2
3 Modified: ChangeLog
4 Added: libetpan-0.56.ebuild
5 Log:
6 Version bump, #236178
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r7 x86_64)
8
9 Revision Changes Path
10 1.70 net-libs/libetpan/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.70&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libetpan/ChangeLog?rev=1.70&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libetpan/ChangeLog?r1=1.69&r2=1.70
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v
19 retrieving revision 1.69
20 retrieving revision 1.70
21 diff -u -r1.69 -r1.70
22 --- ChangeLog 30 May 2008 07:13:13 -0000 1.69
23 +++ ChangeLog 7 Sep 2008 16:50:35 -0000 1.70
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-libs/libetpan
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.69 2008/05/30 07:13:13 phreak Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/ChangeLog,v 1.70 2008/09/07 16:50:35 dertobi123 Exp $
29 +
30 +*libetpan-0.56 (07 Sep 2008)
31 +
32 + 07 Sep 2008; Tobias Scherbaum <dertobi123@g.o>
33 + +libetpan-0.56.ebuild:
34 + Version bump, #236178
35
36 30 May 2008; Christian Heim <phreak@g.o> metadata.xml:
37 Removing Andrej Kacian (Ticho) from metadata.xml (as per #59986).
38
39
40
41 1.1 net-libs/libetpan/libetpan-0.56.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libetpan/libetpan-0.56.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libetpan/libetpan-0.56.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libetpan-0.56.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/libetpan/libetpan-0.56.ebuild,v 1.1 2008/09/07 16:50:35 dertobi123 Exp $
51
52 DESCRIPTION="A portable, efficient middleware for different kinds of mail access."
53 HOMEPAGE="http://libetpan.sourceforge.net"
54 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
55
56 LICENSE="BSD"
57 SLOT="0"
58 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
59 IUSE="berkdb debug gnutls ipv6 liblockfile sasl ssl"
60
61 DEPEND="virtual/libc
62 berkdb? ( sys-libs/db )
63 gnutls? ( net-libs/gnutls )
64 !gnutls? ( ssl? ( dev-libs/openssl ) )
65 sasl? ( dev-libs/cyrus-sasl )
66 liblockfile? ( net-libs/liblockfile )"
67
68 src_compile() {
69 local sslconf
70
71 if use ssl; then
72 if use gnutls; then
73 sslconf="--with-gnutls --without-openssl"
74 else
75 sslconf="--without-gnutls --with-openssl"
76 fi
77 else
78 if use gnutls; then
79 sslconf="--with-gnutls --without-openssl"
80 else
81 sslconf="--without-gnutls --without-openssl"
82 fi
83 fi
84
85 econf \
86 $(use_enable debug) \
87 $(use_enable berkdb db) \
88 $(use_with sasl) \
89 $(use_enable ipv6) \
90 $(use_enable liblockfile lockfile) \
91 ${sslconf} \
92 || die "econf failed"
93
94 # build system is broken, we need -j1 (bug #126848) - Ticho, 2006-05-02
95 emake || die "emake failed"
96 }
97
98 src_install() {
99 make DESTDIR="${D}" install || die "make install failed"
100 dodoc NEWS ChangeLog
101 }
102
103 pkg_postinst() {
104 echo
105 ewarn "The soname for libetpan has changed after libetpan-0.53."
106 ewarn "If you have upgraded from that or earlier version, it is recommended to run"
107 ewarn "revdep-rebuild to fix any linking errors caused by this change."
108 echo
109 }