Gentoo Archives: gentoo-commits

From: "Jim Ramsay (lack)" <lack@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in rox-base/rox: ChangeLog rox-2.7-r2.ebuild
Date: Fri, 21 Dec 2007 17:28:29
Message-Id: E1J5lfZ-0002Ik-Cv@stork.gentoo.org
1 lack 07/12/21 17:28:21
2
3 Modified: ChangeLog rox-2.7-r2.ebuild
4 Log:
5 Minor QA fixes from a dberkholz review
6 (Portage version: 2.1.4_rc4)
7
8 Revision Changes Path
9 1.51 rox-base/rox/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/ChangeLog?rev=1.51&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/ChangeLog?rev=1.51&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/ChangeLog?r1=1.50&r2=1.51
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/rox-base/rox/ChangeLog,v
18 retrieving revision 1.50
19 retrieving revision 1.51
20 diff -u -r1.50 -r1.51
21 --- ChangeLog 17 Dec 2007 15:05:56 -0000 1.50
22 +++ ChangeLog 21 Dec 2007 17:28:20 -0000 1.51
23 @@ -1,6 +1,9 @@
24 # ChangeLog for rox-base/rox
25 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/ChangeLog,v 1.50 2007/12/17 15:05:56 lack Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/ChangeLog,v 1.51 2007/12/21 17:28:20 lack Exp $
28 +
29 + 21 Dec 2007; Jim Ramsay <lack@g.o> rox-2.7-r2.ebuild:
30 + Minor QA fixes from a dberkholz review
31
32 *rox-2.7-r2 (17 Dec 2007)
33
34 @@ -13,6 +16,11 @@
35 14 Dec 2007; Jim Ramsay <lack@g.o> +rox-2.7-r1.ebuild:
36 Now installs zero-install native feed (Bug 202275)
37
38 +*rox-2.7-r1 (05 Dec 2007)
39 +
40 + 05 Dec 2007; Jim Ramsay <lack@g.o> +rox-2.7-r1.ebuild:
41 + Added feed support and dependency on zeroinstall-injector
42 +
43 *rox-2.7 (30 Nov 2007)
44
45 30 Nov 2007; Jim Ramsay <lack@g.o> -files/rox-2.5-nostrip.patch,
46
47
48
49 1.2 rox-base/rox/rox-2.7-r2.ebuild
50
51 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild?rev=1.2&view=markup
52 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild?rev=1.2&content-type=text/plain
53 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild?r1=1.1&r2=1.2
54
55 Index: rox-2.7-r2.ebuild
56 ===================================================================
57 RCS file: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild,v
58 retrieving revision 1.1
59 retrieving revision 1.2
60 diff -u -r1.1 -r1.2
61 --- rox-2.7-r2.ebuild 17 Dec 2007 15:05:56 -0000 1.1
62 +++ rox-2.7-r2.ebuild 21 Dec 2007 17:28:20 -0000 1.2
63 @@ -1,6 +1,6 @@
64 # Copyright 1999-2007 Gentoo Foundation
65 # Distributed under the terms of the GNU General Public License v2
66 -# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild,v 1.1 2007/12/17 15:05:56 lack Exp $
67 +# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild,v 1.2 2007/12/21 17:28:20 lack Exp $
68
69 EAPI=1
70 inherit eutils multilib
71 @@ -15,7 +15,7 @@
72 LICENSE="GPL-2"
73 SLOT="0"
74 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
75 -IUSE="+svg +video"
76 +IUSE="svg +video"
77
78 RDEPEND=">=x11-libs/gtk+-2.4
79 >=dev-libs/glib-2.2
80 @@ -53,10 +53,12 @@
81 sed -i.bak -e 's/\<read WAIT\>/#read/' AppRun
82
83 ./AppRun --compile || die "make failed"
84 - (cd src; make clean) > /dev/null
85 +
86 # don't need these directories anymore
87 if [ -n "${KEEP_SRC}" ]; then
88 - (cd src; make clean) > /dev/null
89 + pushd src
90 + make clean > /dev/null
91 + popd
92 else
93 rm -rf src
94 fi
95 @@ -75,9 +77,9 @@
96 cp -r ${APPNAME}/ "${D}/${APPDIR}"
97
98 # add documentation to be proper
99 - ( cd ${APPNAME}/Help
100 + pushd ${APPNAME}/Help
101 dodoc Changes README README-es TODO
102 - )
103 + popd
104
105 # install shell script
106 dodir /usr/bin
107 @@ -103,8 +105,8 @@
108 exec "${APPDIR}/${APPNAME}/AppRun" -U "\$@"
109 EOF
110
111 - chmod 0755 "${D}/usr/bin/${WRAPPERNAME}"
112 - chmod 0755 "${D}/usr/bin/${WRAPPERNAME}uri"
113 + fperms 0755 "/usr/bin/${WRAPPERNAME}"
114 + fperms 0755 "/usr/bin/${WRAPPERNAME}uri"
115
116 # install rox.xml
117 insinto ${MIMEDIR}/packages
118 @@ -118,7 +120,7 @@
119 insinto /usr/share/pixmaps
120 newins ${APPNAME}/.DirIcon ${APPNAME}.png
121
122 - make_desktop_entry ${WRAPPERNAME} ${APPNAME} ${APPNAME}.png "System;Utility;Core;ROX"
123 + make_desktop_entry ${WRAPPERNAME} ${APPNAME} ${APPNAME} "System;FileTools;FileManager"
124
125 # Install the 0install feed
126 local NATIVE_FEED_DIR="/usr/share/0install.net/native_feeds"
127
128
129
130 --
131 gentoo-commits@g.o mailing list