Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/gmime: gmime-2.6.3.ebuild gmime-2.4.30.ebuild ChangeLog
Date: Sat, 31 Dec 2011 18:55:35
Message-Id: 20111231185525.722262004B@flycatcher.gentoo.org
1 pacho 11/12/31 18:55:25
2
3 Modified: ChangeLog
4 Added: gmime-2.6.3.ebuild gmime-2.4.30.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.10.44/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.173 dev-libs/gmime/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gmime/ChangeLog?rev=1.173&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gmime/ChangeLog?rev=1.173&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gmime/ChangeLog?r1=1.172&r2=1.173
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/gmime/ChangeLog,v
20 retrieving revision 1.172
21 retrieving revision 1.173
22 diff -u -r1.172 -r1.173
23 --- ChangeLog 29 Dec 2011 17:25:29 -0000 1.172
24 +++ ChangeLog 31 Dec 2011 18:55:25 -0000 1.173
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-libs/gmime
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmime/ChangeLog,v 1.172 2011/12/29 17:25:29 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmime/ChangeLog,v 1.173 2011/12/31 18:55:25 pacho Exp $
30 +
31 +*gmime-2.4.30 (31 Dec 2011)
32 +*gmime-2.6.3 (31 Dec 2011)
33 +
34 + 31 Dec 2011; Pacho Ramos <pacho@g.o> +gmime-2.4.30.ebuild,
35 + +gmime-2.6.3.ebuild:
36 + Version bump.
37
38 29 Dec 2011; Pacho Ramos <pacho@g.o> gmime-2.4.28.ebuild,
39 gmime-2.6.1.ebuild:
40
41
42
43 1.1 dev-libs/gmime/gmime-2.6.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gmime/gmime-2.6.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gmime/gmime-2.6.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gmime-2.6.3.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/gmime/gmime-2.6.3.ebuild,v 1.1 2011/12/31 18:55:25 pacho Exp $
53
54 EAPI="4"
55 GCONF_DEBUG="no"
56 GNOME2_LA_PUNT="yes"
57
58 inherit gnome2 eutils mono libtool
59
60 DESCRIPTION="Utilities for creating and parsing messages using MIME"
61 HOMEPAGE="http://spruce.sourceforge.net/gmime/"
62
63 SLOT="2.6"
64 LICENSE="LGPL-2.1"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
66 IUSE="doc mono static-libs"
67
68 RDEPEND=">=dev-libs/glib-2.18.0:2
69 sys-libs/zlib
70 >=app-crypt/gpgme-1.1.6
71 mono? (
72 dev-lang/mono
73 >=dev-dotnet/glib-sharp-2.4.0:2 )"
74 DEPEND="${RDEPEND}
75 dev-util/pkgconfig
76 doc? (
77 >=dev-util/gtk-doc-1.8
78 app-text/docbook-sgml-utils )
79 mono? ( dev-dotnet/gtk-sharp-gapi:2 )"
80
81 pkg_setup() {
82 DOCS="AUTHORS ChangeLog NEWS PORTING README TODO"
83 G2CONF="${G2CONF}
84 --enable-cryptography
85 --disable-strict-parser
86 $(use_enable mono)
87 $(use_enable static-libs static)"
88 }
89
90 src_prepare() {
91 gnome2_src_prepare
92
93 if use doc ; then
94 # db2html should be docbook2html, upstream bug #667070
95 sed -i -e 's:db2html:docbook2html:' \
96 configure.ac configure || die "sed failed (1)"
97 sed -i -e 's:db2html:docbook2html -o gmime-tut:g' \
98 docs/tutorial/Makefile.am docs/tutorial/Makefile.in \
99 || die "sed failed (2)"
100 # Fix doc targets (bug #97154), upstream bug #667071
101 sed -i -e 's!\<\(tmpl-build.stamp\): !\1 $(srcdir)/tmpl/*.sgml: !' \
102 gtk-doc.make docs/reference/Makefile.in || die "sed failed (3)"
103 fi
104
105 # Use correct libdir for mono assembly, upstream bug #667072
106 sed -i -e 's:^libdir.*:libdir=@libdir@:' \
107 -e 's:^prefix=:exec_prefix=:' \
108 -e 's:prefix)/lib:libdir):' \
109 mono/gmime-sharp.pc.in mono/Makefile.{am,in} || die "sed failed (4)"
110
111 elibtoolize
112 }
113
114 src_compile() {
115 MONO_PATH="${S}" gnome2_src_compile
116 if use doc; then
117 emake -C docs/tutorial html
118 fi
119 }
120
121 src_install() {
122 GACUTIL_FLAGS="/root '${ED}/usr/$(get_libdir)' /gacdir '${EPREFIX}/usr/$(get_libdir)' /package ${PN}" \
123 gnome2_src_install
124
125 if use doc ; then
126 # we don't use docinto/dodoc, because we don't want html doc gzipped
127 insinto /usr/share/doc/${PF}/tutorial
128 doins docs/tutorial/html/*
129 fi
130
131 # rename these two, so they don't conflict with app-arch/sharutils
132 # (bug #70392) Ticho, 2004-11-10, upstream bug #667073
133 mv "${ED}/usr/bin/uuencode" "${ED}/usr/bin/gmime-uuencode-${SLOT}" || die
134 mv "${ED}/usr/bin/uudecode" "${ED}/usr/bin/gmime-uudecode-${SLOT}" || die
135 }
136
137
138
139 1.1 dev-libs/gmime/gmime-2.4.30.ebuild
140
141 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gmime/gmime-2.4.30.ebuild?rev=1.1&view=markup
142 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gmime/gmime-2.4.30.ebuild?rev=1.1&content-type=text/plain
143
144 Index: gmime-2.4.30.ebuild
145 ===================================================================
146 # Copyright 1999-2011 Gentoo Foundation
147 # Distributed under the terms of the GNU General Public License v2
148 # $Header: /var/cvsroot/gentoo-x86/dev-libs/gmime/gmime-2.4.30.ebuild,v 1.1 2011/12/31 18:55:25 pacho Exp $
149
150 EAPI="4"
151 GCONF_DEBUG="no"
152 GNOME2_LA_PUNT="yes"
153
154 inherit gnome2 eutils mono libtool
155
156 DESCRIPTION="Utilities for creating and parsing messages using MIME"
157 HOMEPAGE="http://spruce.sourceforge.net/gmime/"
158
159 SLOT="2.4"
160 LICENSE="LGPL-2.1"
161 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
162 IUSE="doc mono static-libs"
163
164 RDEPEND=">=dev-libs/glib-2.12:2
165 sys-libs/zlib
166 mono? (
167 dev-lang/mono
168 >=dev-dotnet/glib-sharp-2.4.0:2 )"
169 DEPEND="${RDEPEND}
170 dev-util/pkgconfig
171 doc? (
172 >=dev-util/gtk-doc-1.8
173 app-text/docbook-sgml-utils )
174 mono? ( dev-dotnet/gtk-sharp-gapi:2 )"
175
176 pkg_setup() {
177 DOCS="AUTHORS ChangeLog NEWS PORTING README TODO"
178 G2CONF="${G2CONF}
179 --enable-cryptography
180 $(use_enable mono)
181 $(use_enable static-libs static)"
182 }
183
184 src_prepare() {
185 gnome2_src_prepare
186
187 if use doc ; then
188 # db2html should be docbook2html
189 sed -i -e 's:db2html:docbook2html:' \
190 configure.in configure || die "sed failed (1)"
191 sed -i -e 's:db2html:docbook2html -o gmime-tut:g' \
192 docs/tutorial/Makefile.am docs/tutorial/Makefile.in \
193 || die "sed failed (2)"
194 # Fix doc targets (bug #97154)
195 sed -i -e 's!\<\(tmpl-build.stamp\): !\1 $(srcdir)/tmpl/*.sgml: !' \
196 gtk-doc.make docs/reference/Makefile.in || die "sed failed (3)"
197 fi
198
199 # Use correct libdir for mono assembly
200 sed -i -e 's:^libdir.*:libdir=@libdir@:' \
201 -e 's:^prefix=:exec_prefix=:' \
202 -e 's:prefix)/lib:libdir):' \
203 mono/gmime-sharp-2.4.pc.in mono/Makefile.{am,in} || die "sed failed (4)"
204
205 elibtoolize
206 }
207
208 src_compile() {
209 MONO_PATH="${S}" gnome2_src_compile
210 if use doc; then
211 emake -C docs/tutorial html
212 fi
213 }
214
215 src_install() {
216 GACUTIL_FLAGS="/root '${ED}/usr/$(get_libdir)' /gacdir '${EPREFIX}/usr/$(get_libdir)' /package ${PN}" \
217 gnome2_src_install
218
219 if use doc ; then
220 # we don't use docinto/dodoc, because we don't want html doc gzipped
221 insinto /usr/share/doc/${PF}/tutorial
222 doins docs/tutorial/html/*
223 fi
224
225 # rename these two, so they don't conflict with app-arch/sharutils
226 # (bug #70392) Ticho, 2004-11-10
227 mv "${ED}/usr/bin/uuencode" "${ED}/usr/bin/gmime-uuencode-${SLOT}" || die
228 mv "${ED}/usr/bin/uudecode" "${ED}/usr/bin/gmime-uudecode-${SLOT}" || die
229 }