Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/fluxbox: fluxbox-9999.ebuild
Date: Thu, 30 Aug 2012 10:01:34
Message-Id: 20120830100123.8D28A20C43@flycatcher.gentoo.org
1 ssuominen 12/08/30 10:01:23
2
3 Modified: fluxbox-9999.ebuild
4 Log:
5 Clear out unrequired die statements from EAPI4 ebuild (minor cleanup, related to last commit)
6
7 (Portage version: 2.2.0_alpha122/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.12 x11-wm/fluxbox/fluxbox-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/fluxbox-9999.ebuild?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/fluxbox-9999.ebuild?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/fluxbox/fluxbox-9999.ebuild?r1=1.11&r2=1.12
15
16 Index: fluxbox-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-9999.ebuild,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- fluxbox-9999.ebuild 30 Aug 2012 09:56:44 -0000 1.11
23 +++ fluxbox-9999.ebuild 30 Aug 2012 10:01:23 -0000 1.12
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-9999.ebuild,v 1.11 2012/08/30 09:56:44 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/fluxbox/fluxbox-9999.ebuild,v 1.12 2012/08/30 10:01:23 ssuominen Exp $
29
30 EAPI=4
31 inherit eutils flag-o-matic toolchain-funcs git-2 prefix
32 @@ -73,7 +73,7 @@
33 }
34
35 src_compile() {
36 - emake || die "make failed"
37 + emake
38
39 ebegin "Creating a menu file (may take a while)"
40 mkdir -p "${T}/home/.fluxbox" || die "mkdir home failed"
41 @@ -86,22 +86,22 @@
42
43 src_install() {
44 dodir /usr/share/fluxbox
45 - emake DESTDIR="${D}" STRIP="" install || die "install failed"
46 + emake DESTDIR="${D}" STRIP="" install
47 dodoc README* AUTHORS TODO* ChangeLog NEWS
48
49 dodir /usr/share/xsessions
50 insinto /usr/share/xsessions
51 - doins "${FILESDIR}/${PN}.desktop"
52 + doins "${FILESDIR}"/${PN}.desktop
53
54 exeinto /etc/X11/Sessions
55 - newexe "${FILESDIR}/${PN}.xsession" fluxbox
56 + newexe "${FILESDIR}"/${PN}.xsession fluxbox
57
58 dodir /usr/share/fluxbox/menu.d
59
60 # Styles menu framework
61 dodir /usr/share/fluxbox/menu.d/styles
62 insinto /usr/share/fluxbox/menu.d/styles
63 - doins "${FILESDIR}/styles-menu-fluxbox" || die
64 - doins "${FILESDIR}/styles-menu-commonbox" || die
65 - doins "${FILESDIR}/styles-menu-user" || die
66 + doins "${FILESDIR}"/styles-menu-fluxbox
67 + doins "${FILESDIR}"/styles-menu-commonbox
68 + doins "${FILESDIR}"/styles-menu-user
69 }