Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/desktop-file-utils: ChangeLog desktop-file-utils-0.14.ebuild
Date: Sun, 09 Sep 2007 15:08:08
Message-Id: E1IUOHg-0003va-Gh@stork.gentoo.org
1 drac 07/09/09 15:01:12
2
3 Modified: ChangeLog
4 Added: desktop-file-utils-0.14.ebuild
5 Log:
6 Version bump wrt #191755 with fixed emacs support wrt #191764.
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.58 dev-util/desktop-file-utils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/desktop-file-utils/ChangeLog?rev=1.58&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/desktop-file-utils/ChangeLog?rev=1.58&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/desktop-file-utils/ChangeLog?r1=1.57&r2=1.58
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/desktop-file-utils/ChangeLog,v
19 retrieving revision 1.57
20 retrieving revision 1.58
21 diff -u -r1.57 -r1.58
22 --- ChangeLog 21 Jul 2007 19:59:04 -0000 1.57
23 +++ ChangeLog 9 Sep 2007 15:01:11 -0000 1.58
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/desktop-file-utils
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/desktop-file-utils/ChangeLog,v 1.57 2007/07/21 19:59:04 drac Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/desktop-file-utils/ChangeLog,v 1.58 2007/09/09 15:01:11 drac Exp $
29 +
30 +*desktop-file-utils-0.14 (09 Sep 2007)
31 +
32 + 09 Sep 2007; Samuli Suominen <drac@g.o>
33 + +files/50desktop-file-utils-gentoo.el, +desktop-file-utils-0.14.ebuild:
34 + Version bump wrt #191755 with fixed emacs support wrt #191764.
35
36 *desktop-file-utils-0.13 (21 Jul 2007)
37
38
39
40
41 1.1 dev-util/desktop-file-utils/desktop-file-utils-0.14.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/desktop-file-utils/desktop-file-utils-0.14.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/desktop-file-utils/desktop-file-utils-0.14.ebuild?rev=1.1&content-type=text/plain
45
46 Index: desktop-file-utils-0.14.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/desktop-file-utils/desktop-file-utils-0.14.ebuild,v 1.1 2007/09/09 15:01:11 drac Exp $
51
52 inherit eutils elisp-common
53
54 DESCRIPTION="Command line utilities to work with desktop menu entries"
55 HOMEPAGE="http://www.freedesktop.org/software/desktop-file-utils"
56 SRC_URI="http://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE="emacs"
62
63 RDEPEND=">=dev-libs/glib-2.6
64 emacs? ( virtual/emacs )"
65 DEPEND="${RDEPEND}
66 dev-util/pkgconfig"
67
68 SITEFILE=50${PN}-gentoo.el
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 sed -i -e 's:misc::' Makefile.in
74 # add manpages from bug 85354
75 epatch "${FILESDIR}"/${PN}-0.10-man.patch
76 }
77
78 src_compile() {
79 econf
80 emake || die "emake failed."
81 use emacs && elisp-compile misc/desktop-entry-mode.el
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "emake install failed."
86
87 if use emacs; then
88 elisp-install ${PN} misc/*.el misc/*.elc || die "elisp-install failed."
89 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
90 fi
91
92 dodoc AUTHORS ChangeLog NEWS README
93 doman man/*
94 }
95
96 pkg_postinst() {
97 use emacs && elisp-site-regen
98 }
99
100 pkg_postrm() {
101 use emacs && elisp-site-regen
102 }
103
104
105
106 --
107 gentoo-commits@g.o mailing list