Gentoo Archives: gentoo-commits

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