Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/zim: ChangeLog zim-0.27.ebuild
Date: Wed, 03 Jun 2009 01:50:26
Message-Id: E1MBfcV-0001X7-TZ@stork.gentoo.org
1 ssuominen 09/06/03 01:50:23
2
3 Modified: ChangeLog zim-0.27.ebuild
4 Log:
5 Missing virtual/perl-Module-Build depend.
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.6 x11-misc/zim/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/zim/ChangeLog?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/zim/ChangeLog?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/zim/ChangeLog?r1=1.5&r2=1.6
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-misc/zim/ChangeLog,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- ChangeLog 16 Jan 2009 21:06:16 -0000 1.5
22 +++ ChangeLog 3 Jun 2009 01:50:23 -0000 1.6
23 @@ -1,6 +1,9 @@
24 # ChangeLog for x11-misc/zim
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/zim/ChangeLog,v 1.5 2009/01/16 21:06:16 yngwin Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/zim/ChangeLog,v 1.6 2009/06/03 01:50:23 ssuominen Exp $
28 +
29 + 03 Jun 2009; Samuli Suominen <ssuominen@g.o> zim-0.27.ebuild:
30 + Missing virtual/perl-Module-Build depend wrt #253340.
31
32 16 Jan 2009; Ben de Groot <yngwin@g.o> zim-0.27.ebuild:
33 Updating homepage and SRC_URI, as noted by Todd Partridge in bug 255187.
34
35
36
37 1.3 x11-misc/zim/zim-0.27.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/zim/zim-0.27.ebuild?rev=1.3&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/zim/zim-0.27.ebuild?rev=1.3&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/zim/zim-0.27.ebuild?r1=1.2&r2=1.3
42
43 Index: zim-0.27.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/x11-misc/zim/zim-0.27.ebuild,v
46 retrieving revision 1.2
47 retrieving revision 1.3
48 diff -u -r1.2 -r1.3
49 --- zim-0.27.ebuild 16 Jan 2009 21:06:16 -0000 1.2
50 +++ zim-0.27.ebuild 3 Jun 2009 01:50:23 -0000 1.3
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/zim/zim-0.27.ebuild,v 1.2 2009/01/16 21:06:16 yngwin Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/zim/zim-0.27.ebuild,v 1.3 2009/06/03 01:50:23 ssuominen Exp $
56
57 inherit eutils fdo-mime perl-module
58
59 @@ -15,7 +15,7 @@
60 KEYWORDS="~amd64 ~x86"
61 IUSE="latex screenshot spell"
62
63 -DEPEND=">=dev-lang/perl-5.8
64 +COMMON_DEPEND=">=dev-lang/perl-5.8
65 >=x11-libs/gtk+-2.10
66 virtual/perl-Storable
67 virtual/perl-File-Spec
68 @@ -24,10 +24,12 @@
69 >=dev-perl/File-DesktopEntry-0.03
70 >=dev-perl/gtk2-perl-1.040
71 x11-misc/xdg-utils"
72 -RDEPEND="${DEPEND}
73 +RDEPEND="${COMMON_DEPEND}
74 latex? ( virtual/latex-base app-text/dvipng )
75 screenshot? ( media-gfx/scrot )
76 spell? ( dev-perl/gtk2-spell )"
77 +DEPEND="${COMMON_DEPEND}
78 + virtual/perl-Module-Build"
79
80 S=${WORKDIR}/${MY_P}
81
82 @@ -43,13 +45,13 @@
83 fdo-mime_desktop_database_update
84 xdg-icon-resource install --context mimetypes --size 64 \
85 "${ROOT}/usr/share/pixmaps/zim.png" \
86 - application-x-zim-notebook || die "xdg-icon-resource install failed."
87 + application-x-zim-notebook || die "xdg-icon-resource install failed"
88 }
89
90 pkg_postrm() {
91 perl-module_pkg_postrm
92 fdo-mime_desktop_database_update
93 xdg-icon-resource uninstall --context mimetypes --size 64 \
94 - application-x-zim-notebook || die "xdg-icon-resource uninstall failed."
95 + application-x-zim-notebook || die "xdg-icon-resource uninstall failed"
96
97 }