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-libs/libfm: ChangeLog libfm-0.1.15_pre20110202.ebuild libfm-0.1.14.ebuild
Date: Wed, 02 Feb 2011 22:17:51
Message-Id: 20110202221741.2466420054@flycatcher.gentoo.org
1 hwoarang 11/02/02 22:17:41
2
3 Modified: ChangeLog
4 Added: libfm-0.1.15_pre20110202.ebuild
5 Removed: libfm-0.1.14.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.27 x11-libs/libfm/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/ChangeLog?rev=1.27&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/ChangeLog?rev=1.27&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/ChangeLog?r1=1.26&r2=1.27
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v
21 retrieving revision 1.26
22 retrieving revision 1.27
23 diff -u -r1.26 -r1.27
24 --- ChangeLog 22 Jan 2011 14:26:45 -0000 1.26
25 +++ ChangeLog 2 Feb 2011 22:17:40 -0000 1.27
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-libs/libfm
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.26 2011/01/22 14:26:45 hwoarang Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.27 2011/02/02 22:17:40 hwoarang Exp $
31 +
32 +*libfm-0.1.15_pre20110202 (02 Feb 2011)
33 +
34 + 02 Feb 2011; Markos Chandras <hwoarang@g.o> -libfm-0.1.14.ebuild,
35 + +libfm-0.1.15_pre20110202.ebuild:
36 + Introduce snapshot. Remove old broken version
37
38 22 Jan 2011; Markos Chandras <hwoarang@g.o> libfm-9999.ebuild:
39 Add gtk-doc to EXTRA_DEPEND
40
41
42
43 1.1 x11-libs/libfm/libfm-0.1.15_pre20110202.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/libfm-0.1.15_pre20110202.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/libfm-0.1.15_pre20110202.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libfm-0.1.15_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-libs/libfm/libfm-0.1.15_pre20110202.ebuild,v 1.1 2011/02/02 22:17:41 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 EXTRA_DEPEND="dev-util/gtk-doc
61 dev-util/gtk-doc-am"
62 else
63 inherit autotools
64 SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
65 KEYWORDS="~amd64 ~arm ~ppc ~x86"
66 fi
67
68 inherit fdo-mime
69
70 DESCRIPTION="A library for file management"
71 HOMEPAGE="http://pcmanfm.sourceforge.net/"
72
73 LICENSE="GPL-2"
74 SLOT="0"
75 IUSE="debug examples udev"
76
77 COMMON_DEPEND=">=dev-libs/glib-2.18:2
78 >=x11-libs/gtk+-2.16:2
79 udev? ( dev-libs/dbus-glib )
80 >=lxde-base/menu-cache-0.3.2"
81 RDEPEND="${COMMON_DEPEND}
82 x11-misc/shared-mime-info
83 udev? ( sys-fs/udisks )"
84 DEPEND="${COMMON_DEPEND}
85 >=dev-util/intltool-0.40
86 dev-util/pkgconfig
87 sys-devel/gettext
88 ${EXTRA_DEPEND}"
89
90 src_prepare() {
91 gtkdocize --copy || die
92 intltoolize --force --copy --automake || die
93 eautoreconf
94 }
95
96 src_configure() {
97 econf \
98 --sysconfdir=/etc \
99 --disable-dependency-tracking \
100 --disable-static \
101 $(use_enable udev udisks) \
102 $(use_enable examples demo) \
103 $(use_enable debug) \
104 --with-html-dir=/usr/share/doc/${PF}/html
105 }
106
107 src_install() {
108 emake DESTDIR="${D}" install || die
109 dodoc AUTHORS TODO
110
111 find "${D}" -name '*.la' -exec rm -f '{}' +
112 }
113
114 pkg_postinst() {
115 fdo-mime_mime_database_update
116 }
117
118 pkg_postrm() {
119 fdo-mime_mime_database_update
120 }