Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnustep-apps/gnumail: gnumail-1.2.0.ebuild ChangeLog
Date: Mon, 14 Nov 2011 20:14:04
Message-Id: 20111114201354.1D0672004B@flycatcher.gentoo.org
1 voyageur 11/11/14 20:13:54
2
3 Modified: ChangeLog
4 Added: gnumail-1.2.0.ebuild
5 Log:
6 Maintenance release bump, ebuild cleanup
7
8 (Portage version: 2.2.0_alpha74/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.34 gnustep-apps/gnumail/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gnumail/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gnumail/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gnumail/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 6 Jun 2011 09:09:49 -0000 1.33
24 +++ ChangeLog 14 Nov 2011 20:13:53 -0000 1.34
25 @@ -1,6 +1,11 @@
26 # ChangeLog for gnustep-apps/gnumail
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/ChangeLog,v 1.33 2011/06/06 09:09:49 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/ChangeLog,v 1.34 2011/11/14 20:13:53 voyageur Exp $
30 +
31 +*gnumail-1.2.0 (14 Nov 2011)
32 +
33 + 14 Nov 2011; Bernard Cafarelli <voyageur@g.o> +gnumail-1.2.0.ebuild:
34 + Maintenance release bump, ebuild cleanup
35
36 06 Jun 2011; Bernard Cafarelli <voyageur@g.o>
37 gnumail-1.2.0_pre3-r1.ebuild:
38
39
40
41 1.1 gnustep-apps/gnumail/gnumail-1.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gnumail/gnumail-1.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/gnumail/gnumail-1.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnumail-1.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gnumail/gnumail-1.2.0.ebuild,v 1.1 2011/11/14 20:13:53 voyageur Exp $
51
52 EAPI=4
53 inherit gnustep-2
54
55 MY_P=${P/gnum/GNUM}
56
57 S=${WORKDIR}/${MY_P}
58
59 DESCRIPTION="A fully featured mail application for GNUstep"
60 HOMEPAGE="http://www.collaboration-world.com/gnumail/"
61 SRC_URI="http://download.gna.org/gnustep-nonfsf/${MY_P}.tar.gz"
62 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
63 LICENSE="GPL-2"
64 SLOT="0"
65
66 IUSE="crypt +emoticon +xface"
67 DEPEND="~gnustep-libs/pantomime-${PV}
68 >=gnustep-base/gnustep-gui-0.11.0
69 || ( gnustep-apps/addresses gnustep-libs/addresseskit )"
70 RDEPEND="crypt? ( app-crypt/gnupg )"
71
72 src_prepare() {
73 sed -i -e 's|GNUMail_GUI_LIBS =|LIBRARIES_DEPEND_UPON +=|' \
74 Framework/GNUMail/GNUmakefile || die "as-needed sed failed"
75 }
76
77 src_compile() {
78 egnustep_env
79 egnustep_make
80
81 cd Bundles/Clock
82 egnustep_make
83 cd "${S}"
84
85 if use xface ; then
86 cd Bundles/Face
87 egnustep_make
88 cd "${S}"
89 fi
90
91 if use crypt ; then
92 cd Bundles/PGP
93 egnustep_make
94 cd "${S}"
95 fi
96
97 if use emoticon ; then
98 cd Bundles/Emoticon
99 egnustep_make
100 cd "${S}"
101 fi
102 }
103
104 src_install() {
105 gnustep-base_src_install
106
107 cd Bundles/Clock
108 egnustep_install
109 cd "${S}"
110
111 if use xface ; then
112 cd Bundles/Face
113 egnustep_install
114 cd "${S}"
115 fi
116 if use crypt ; then
117 cd Bundles/PGP
118 egnustep_install
119 cd "${S}"
120 fi
121 if use emoticon ; then
122 cd Bundles/Emoticon
123 egnustep_install
124 cd "${S}"
125 fi
126
127 dodoc "${S}"/Documentation/*
128 }