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/pcmanfm: ChangeLog pcmanfm-0.9.9_pre20110202.ebuild pcmanfm-0.9.8.ebuild
Date: Wed, 02 Feb 2011 22:18:12
Message-Id: 20110202221803.ABE6720054@flycatcher.gentoo.org
1 hwoarang 11/02/02 22:18:03
2
3 Modified: ChangeLog
4 Added: pcmanfm-0.9.9_pre20110202.ebuild
5 Removed: pcmanfm-0.9.8.ebuild
6 Log:
7 Introduce snapshot. Remove old broken version
8
9 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.46 x11-misc/pcmanfm/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/pcmanfm/ChangeLog?rev=1.46&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/pcmanfm/ChangeLog?rev=1.46&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/pcmanfm/ChangeLog?r1=1.45&r2=1.46
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v
21 retrieving revision 1.45
22 retrieving revision 1.46
23 diff -u -r1.45 -r1.46
24 --- ChangeLog 22 Jan 2011 13:35:01 -0000 1.45
25 +++ ChangeLog 2 Feb 2011 22:18:03 -0000 1.46
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-misc/pcmanfm
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.45 2011/01/22 13:35:01 xarthisius Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/pcmanfm/ChangeLog,v 1.46 2011/02/02 22:18:03 hwoarang Exp $
31 +
32 +*pcmanfm-0.9.9_pre20110202 (02 Feb 2011)
33 +
34 + 02 Feb 2011; Markos Chandras <hwoarang@g.o> -pcmanfm-0.9.8.ebuild,
35 + +pcmanfm-0.9.9_pre20110202.ebuild:
36 + Introduce snapshot. Remove old broken version
37
38 22 Jan 2011; Kacper Kowalik <xarthisius@g.o>
39 pcmanfm-0.9.7-r2.ebuild:
40
41
42
43 1.1 x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110202.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110202.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110202.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pcmanfm-0.9.9_pre20110202.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/x11-misc/pcmanfm/pcmanfm-0.9.9_pre20110202.ebuild,v 1.1 2011/02/02 22:18:03 hwoarang Exp $
53
54 EAPI=2
55
56 if [[ ${PV} == 9999 ]]; then
57 EGIT_REPO_URI="git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/${PN}"
58 inherit autotools git
59 SRC_URI=""
60 else
61 inherit autotools
62 SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
63 KEYWORDS="~amd64 ~arm ~ppc ~x86"
64 fi
65
66 inherit fdo-mime
67
68 DESCRIPTION="Fast lightweight tabbed filemanager"
69 HOMEPAGE="http://pcmanfm.sourceforge.net/"
70
71 LICENSE="GPL-2"
72 SLOT="0"
73 IUSE="debug"
74
75 COMMON_DEPEND=">=dev-libs/glib-2.18:2
76 >=x11-libs/gtk+-2.16:2
77 >=lxde-base/menu-cache-0.3.2
78 >=x11-libs/libfm-0.1.15_pre20110202"
79 RDEPEND="${COMMON_DEPEND}
80 virtual/eject"
81 DEPEND="${COMMON_DEPEND}
82 >=dev-util/intltool-0.40
83 dev-util/pkgconfig
84 sys-devel/gettext"
85
86 src_prepare() {
87 intltoolize --force --copy --automake || die
88 eautoreconf
89 }
90
91 src_configure() {
92 econf \
93 --sysconfdir=/etc \
94 $(use_enable debug)
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die
99 dodoc AUTHORS
100 }
101
102 pkg_postinst() {
103 fdo-mime_desktop_database_update
104
105 elog 'PCmanFM can optionally support the menu://applications/ location.'
106 elog 'You should install lxde-base/lxmenu-data for that functionality.'
107 }
108
109 pkg_postrm() {
110 fdo-mime_desktop_database_update
111 }