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-mail/uw-mailutils: ChangeLog uw-mailutils-2007e.ebuild uw-mailutils-2004g.ebuild
Date: Tue, 13 Jan 2009 17:44:37
Message-Id: E1LMnJa-0004eS-N6@stork.gentoo.org
1 dertobi123 09/01/13 17:44:34
2
3 Modified: ChangeLog
4 Added: uw-mailutils-2007e.ebuild
5 Removed: uw-mailutils-2004g.ebuild
6 Log:
7 Version bump, #245425
8 (Portage version: 2.2_rc21/cvs/Linux 2.6.25-gentoo-r7 x86_64)
9
10 Revision Changes Path
11 1.23 net-mail/uw-mailutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-mailutils/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-mailutils/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-mailutils/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-mailutils/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 20 Sep 2008 10:02:50 -0000 1.22
24 +++ ChangeLog 13 Jan 2009 17:44:34 -0000 1.23
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-mail/uw-mailutils
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-mailutils/ChangeLog,v 1.22 2008/09/20 10:02:50 dertobi123 Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-mailutils/ChangeLog,v 1.23 2009/01/13 17:44:34 dertobi123 Exp $
31 +
32 +*uw-mailutils-2007e (13 Jan 2009)
33 +
34 + 13 Jan 2009; Tobias Scherbaum <dertobi123@g.o>
35 + -uw-mailutils-2004g.ebuild, +uw-mailutils-2007e.ebuild:
36 + Version bump, #245425
37
38 20 Sep 2008; Tobias Scherbaum <dertobi123@g.o>
39 uw-mailutils-2007b.ebuild:
40
41
42
43 1.1 net-mail/uw-mailutils/uw-mailutils-2007e.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-mailutils/uw-mailutils-2007e.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-mailutils/uw-mailutils-2007e.ebuild?rev=1.1&content-type=text/plain
47
48 Index: uw-mailutils-2007e.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-mail/uw-mailutils/uw-mailutils-2007e.ebuild,v 1.1 2009/01/13 17:44:34 dertobi123 Exp $
53
54 inherit eutils flag-o-matic
55
56 MY_P="imap-${PV}"
57 S="${WORKDIR}/${MY_P}"
58
59 DESCRIPTION="Mail utilities from the UW"
60 HOMEPAGE="http://www.washington.edu/imap/"
61 SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z"
62
63 LICENSE="Apache-2.0"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
66 IUSE=""
67
68 DEPEND="virtual/libc
69 !<mail-client/pine-4.64-r1"
70 RDEPEND="${DEPEND}
71 !<net-mail/uw-imap-${PV}"
72
73 src_unpack() {
74 unpack ${A}
75 chmod -R ug+w "${S}"
76
77 cd "${S}"
78
79 epatch "${FILESDIR}/${PN}-2004g.patch" || die "epatch failed"
80
81 sed -i -e "s|\`cat \$C/CFLAGS\`|${CFLAGS}|g" \
82 src/mailutil/Makefile \
83 src/mtest/Makefile || die "sed failed patching Makefile CFLAGS."
84
85 append-flags -fPIC
86 }
87
88 src_compile() {
89 local port=slx
90 use elibc_FreeBSD && port=bsf
91 yes | make "${port}" EXTRACFLAGS="${CFLAGS}" SSLTYPE=none || die
92 }
93
94 src_install() {
95 into /usr
96 dobin mailutil/mailutil mtest/mtest
97 doman src/mailutil/mailutil.1
98 }