Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/zoinks: ChangeLog zoinks-0.4.1.ebuild
Date: Sat, 28 Jun 2014 23:06:42
Message-Id: 20140628230636.A77132004E@flycatcher.gentoo.org
1 jer 14/06/28 23:06:36
2
3 Modified: ChangeLog zoinks-0.4.1.ebuild
4 Log:
5 Add postinst elog message about missing fonts.
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.29 app-editors/zoinks/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/zoinks/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 28 Jun 2014 20:55:00 -0000 1.28
23 +++ ChangeLog 28 Jun 2014 23:06:36 -0000 1.29
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-editors/zoinks
26 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/ChangeLog,v 1.28 2014/06/28 20:55:00 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/ChangeLog,v 1.29 2014/06/28 23:06:36 jer Exp $
29 +
30 + 28 Jun 2014; Jeroen Roovers <jer@g.o> zoinks-0.4.1.ebuild:
31 + Add postinst elog message about missing fonts.
32
33 28 Jun 2014; Jeroen Roovers <jer@g.o> zoinks-0.4.1.ebuild:
34 Bump EAPI (bug #515622 by Jonas Stein).
35
36
37
38 1.9 app-editors/zoinks/zoinks-0.4.1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild?rev=1.9&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild?rev=1.9&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild?r1=1.8&r2=1.9
43
44 Index: zoinks-0.4.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild,v
47 retrieving revision 1.8
48 retrieving revision 1.9
49 diff -u -r1.8 -r1.9
50 --- zoinks-0.4.1.ebuild 28 Jun 2014 20:55:00 -0000 1.8
51 +++ zoinks-0.4.1.ebuild 28 Jun 2014 23:06:36 -0000 1.9
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild,v 1.8 2014/06/28 20:55:00 jer Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild,v 1.9 2014/06/28 23:06:36 jer Exp $
57
58 EAPI=5
59 inherit eutils toolchain-funcs
60 @@ -36,3 +36,11 @@
61 doicon ide/Pixmaps/${PN}.xpm
62 make_desktop_entry ${PN} "Zoinks!" ${PN} "Utility;TextEditor"
63 }
64 +
65 +pkg_postinst() {
66 + if ! [[ ${REPLACING_VERSIONS} ]]; then
67 + elog "If you see this message when starting zoinks:"
68 + elog "zoinks: TFont.cpp:40: TFont::TFont(const char*): Assertion \`fFontSet' failed."
69 + elog "You need to install media-fonts/font-adobe-{75,100dpi}"
70 + fi
71 +}