Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/pcmanfm: ChangeLog pcmanfm-0.5.1.ebuild
Date: Fri, 05 Jun 2009 01:34:23
Message-Id: E1MCOJv-0005R3-KL@stork.gentoo.org
1 yngwin 09/06/05 01:34:11
2
3 Modified: ChangeLog
4 Added: pcmanfm-0.5.1.ebuild
5 Log:
6 Version bump. Fix desktop file to not break Gnome and possibly other environments, bug 272318.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 x11-misc/pcmanfm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/pcmanfm/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/pcmanfm/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/pcmanfm/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 4 Sep 2008 11:36:42 -0000 1.2
23 +++ ChangeLog 5 Jun 2009 01:34:11 -0000 1.3
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-misc/pcmanfm
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.2 2008/09/04 11:36:42 yngwin Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.3 2009/06/05 01:34:11 yngwin Exp $
30 +
31 +*pcmanfm-0.5.1 (05 Jun 2009)
32 +
33 + 05 Jun 2009; Ben de Groot <yngwin@g.o> +pcmanfm-0.5.1.ebuild,
34 + +files/pcmanfm-find.desktop.patch:
35 + Version bump. Fix desktop file to not break Gnome and possibly other
36 + environments, bug 272318.
37
38 04 Sep 2008; Ben de Groot <yngwin@g.o> metadata.xml:
39 Reassigning maintainership to lxde team as a whole
40
41
42
43 1.1 x11-misc/pcmanfm/pcmanfm-0.5.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/pcmanfm/pcmanfm-0.5.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/pcmanfm/pcmanfm-0.5.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pcmanfm-0.5.1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/pcmanfm-0.5.1.ebuild,v 1.1 2009/06/05 01:34:11 yngwin Exp $
53
54 EAPI="2"
55 inherit eutils fdo-mime
56
57 DESCRIPTION="Extremely fast and lightweight tabbed file manager"
58 HOMEPAGE="http://pcmanfm.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="hal"
65
66 RDEPEND="virtual/fam
67 x11-libs/cairo
68 x11-libs/gtk+:2
69 x11-misc/shared-mime-info
70 x11-themes/gnome-icon-theme
71 x11-libs/startup-notification
72 hal? ( sys-apps/hal )"
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig
75 sys-devel/gettext"
76
77 src_prepare() {
78 # Don't break Gnome & possibly other environments, bug 272318
79 epatch "${FILESDIR}"/pcmanfm-find.desktop.patch
80 eautoreconf
81 }
82
83 src_configure() {
84 econf $(use_enable hal)
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "emake install failed"
89 dodoc AUTHORS ChangeLog NEWS README TODO
90 }
91
92 pkg_postinst() {
93 fdo-mime_desktop_database_update
94 fdo-mime_mime_database_update
95
96 if has_version app-admin/fam ; then
97 elog "You are using fam as your file alteration monitor,"
98 elog "so you must have famd started before running pcmanfm."
99 elog
100 elog "To add famd to the default runlevel and start it, run:"
101 elog
102 elog "# rc-update add famd default"
103 elog "# /etc/init.d/famd start"
104 elog
105 elog "It is recommended you use gamin instead of fam."
106 fi
107 }
108
109 pkg_postrm() {
110 fdo-mime_desktop_database_update
111 fdo-mime_mime_database_update
112 }