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-themes/windowmaker-themes: windowmaker-themes-0.1.ebuild
Date: Wed, 24 Feb 2010 14:19:47
Message-Id: E1NkI5Y-0001PT-3U@stork.gentoo.org
1 ssuominen 10/02/24 14:19:44
2
3 Modified: windowmaker-themes-0.1.ebuild
4 Log:
5 Fix quoting
6 (Portage version: 2.2_rc63/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.15 x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild?rev=1.15&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild?rev=1.15&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild?r1=1.14&r2=1.15
14
15 Index: windowmaker-themes-0.1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild,v
18 retrieving revision 1.14
19 retrieving revision 1.15
20 diff -u -r1.14 -r1.15
21 --- windowmaker-themes-0.1.ebuild 24 Sep 2008 16:41:13 -0000 1.14
22 +++ windowmaker-themes-0.1.ebuild 24 Feb 2010 14:19:43 -0000 1.15
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild,v 1.14 2008/09/24 16:41:13 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/windowmaker-themes/windowmaker-themes-0.1.ebuild,v 1.15 2010/02/24 14:19:43 ssuominen Exp $
29
30 # TODO: Break themes up by author and into sub-dirs named after
31 # the author
32 @@ -100,8 +100,8 @@
33 RDEPEND="x11-wm/windowmaker"
34
35 src_unpack() {
36 - mkdir ${S}
37 - cd ${S}
38 + mkdir "${S}"
39 + cd "${S}"
40 for i in ${SRC_URI} ; do
41 bn=`basename $i`
42 if ! use offensive ; then
43 @@ -116,14 +116,14 @@
44 done
45 }
46
47 -src_install () {
48 +src_install() {
49 dodir /usr/share/WindowMaker/Themes
50 - cp -pR * ${D}/usr/share/WindowMaker/Themes/
51 + cp -pR * "${D}"/usr/share/WindowMaker/Themes/
52 # TODO: Need to clean this up at some point ...
53 #mv ${D}/usr/share/WindowMaker/Themes/Themes/* ${D}/usr/share/WindowMaker/Themes
54 #rm -Rf ${D}/usr/share/WindowMaker/Themes/Themes
55 - chown -R root:0 ${D}/usr/share/WindowMaker/Themes/
56 - chmod -R o-w ${D}/usr/share/WindowMaker/Themes/
57 + chown -R root:0 "${D}"/usr/share/WindowMaker/Themes/
58 + chmod -R o-w "${D}"/usr/share/WindowMaker/Themes/
59 }
60
61 pkg_postinst() {