Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/shutter: shutter-0.85.1.ebuild ChangeLog
Date: Mon, 04 Jan 2010 10:03:40
Message-Id: E1NRjmh-0000OS-Hm@stork.gentoo.org
1 hwoarang 10/01/04 10:03:35
2
3 Modified: ChangeLog
4 Added: shutter-0.85.1.ebuild
5 Log:
6 Version bump. Bug fix release
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 x11-misc/shutter/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/shutter/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/shutter/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/shutter/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/shutter/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 4 Dec 2009 17:44:34 -0000 1.4
23 +++ ChangeLog 4 Jan 2010 10:03:35 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/shutter
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/shutter/ChangeLog,v 1.4 2009/12/04 17:44:34 hwoarang Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/shutter/ChangeLog,v 1.5 2010/01/04 10:03:35 hwoarang Exp $
30 +
31 +*shutter-0.85.1 (04 Jan 2010)
32 +
33 + 04 Jan 2010; <hwoarang@g.o> +shutter-0.85.1.ebuild:
34 + Version bump. Bug fix release
35
36 04 Dec 2009; <hwoarang@g.o> shutter-0.85.ebuild:
37 Add dev-perl/Net-DBus as dependency. Fixes bug #294299
38
39
40
41 1.1 x11-misc/shutter/shutter-0.85.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/shutter/shutter-0.85.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/shutter/shutter-0.85.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: shutter-0.85.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/shutter/shutter-0.85.1.ebuild,v 1.1 2010/01/04 10:03:35 hwoarang Exp $
51
52 EAPI="2"
53
54 inherit eutils
55
56 DESCRIPTION="Feature-rich screenshot program"
57 HOMEPAGE="http://shutter-project.org/"
58 SRC_URI="http://shutter-project.org/wp-content/uploads/releases/tars/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="drawing webphoto"
64
65 RDEPEND="dev-lang/perl
66 dev-perl/gnome2-gconf
67 drawing? ( dev-perl/Goo-Canvas )
68 webphoto? ( gnome-extra/gnome-web-photo )
69 media-gfx/imagemagick
70 dev-perl/libxml-perl
71 dev-perl/gnome2-wnck
72 dev-perl/gnome2-canvas
73 dev-perl/gnome2-perl
74 dev-perl/Gtk2-ImageView
75 dev-perl/File-DesktopEntry
76 dev-perl/File-HomeDir
77 dev-perl/File-Which
78 dev-perl/File-Copy-Recursive
79 dev-perl/File-MimeInfo
80 dev-perl/Locale-gettext
81 dev-perl/Net-DBus
82 dev-perl/Proc-Simple
83 dev-perl/Sort-Naturally
84 dev-perl/WWW-Mechanize
85 dev-perl/X11-Protocol
86 dev-perl/XML-Simple
87 dev-perl/libwww-perl"
88
89 src_prepare() {
90 use webphoto || epatch "${FILESDIR}"/disable_webphoto.patch
91 use drawing || epatch "${FILESDIR}"/disable_goocanvas.patch
92 }
93
94 src_install() {
95 dobin bin/${PN} || die "dobin failed"
96 insinto /usr/share/${PN}
97 doins -r share/${PN}/* || die "doins failed"
98 dodoc README || die "dodoc failed"
99 domenu share/applications/${PN}.desktop
100 doman share/man/man1/${PN}.1.gz || die "doman failed"
101 doicon share/pixmaps/${PN}.svg
102 doins -r share/locale || die "doins failed"
103 find "${D}"/usr/share/shutter/resources/system/plugins/ -type f ! -name '*.*' -exec chmod 755 {} \; \
104 || die "failed to make plugins executables"
105 }