public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-i18n/koffice-i18n: koffice-i18n-1.6.3.ebuild
@ 2009-11-11 12:25 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-11-11 12:25 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/11/11 12:25:51

  Modified:             koffice-i18n-1.6.3.ebuild
  Log:
  ARTS_REQUIRED=never
  (Portage version: 2.2_rc49/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild?r1=1.12&r2=1.13

Index: koffice-i18n-1.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- koffice-i18n-1.6.3.ebuild	1 Jul 2009 15:44:15 -0000	1.12
+++ koffice-i18n-1.6.3.ebuild	11 Nov 2009 12:25:50 -0000	1.13
@@ -1,7 +1,8 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild,v 1.12 2009/07/01 15:44:15 tampakrap Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild,v 1.13 2009/11/11 12:25:50 ssuominen Exp $
 
+ARTS_REQUIRED=never
 inherit kde
 
 RV="${PV}"






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-i18n/koffice-i18n: koffice-i18n-1.6.3.ebuild
@ 2009-11-11 12:27 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-11-11 12:27 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/11/11 12:27:26

  Modified:             koffice-i18n-1.6.3.ebuild
  Log:
  Fix quoting too
  (Portage version: 2.2_rc49/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild?r1=1.13&r2=1.14

Index: koffice-i18n-1.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- koffice-i18n-1.6.3.ebuild	11 Nov 2009 12:25:50 -0000	1.13
+++ koffice-i18n-1.6.3.ebuild	11 Nov 2009 12:27:25 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild,v 1.13 2009/11/11 12:25:50 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild,v 1.14 2009/11/11 12:27:25 ssuominen Exp $
 
 ARTS_REQUIRED=never
 inherit kde
@@ -27,7 +27,7 @@
 done
 
 src_unpack() {
-	if [ -z "${A}" ]; then
+	if [ -z ${A} ]; then
 		echo
 		eerror "You must set the LINGUAS environment variable to a list of valid"
 		eerror "language codes, one for each language you would like to install."
@@ -56,9 +56,9 @@
 
 src_install() {
 	local _S="${S}"
-	for dir in ${WORKDIR}/*; do
-		cd ${dir}
-		make DESTDIR=${D} install
+	for dir in "${WORKDIR}"/*; do
+		cd "${dir}"
+		make DESTDIR="${D}" install
 	done
 	S="${_S}"
 }






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-i18n/koffice-i18n: koffice-i18n-1.6.3.ebuild
@ 2009-12-31 21:16 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-12-31 21:16 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/12/31 21:16:26

  Modified:             koffice-i18n-1.6.3.ebuild
  Log:
  Fix quoting
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild?r1=1.14&r2=1.15

Index: koffice-i18n-1.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- koffice-i18n-1.6.3.ebuild	11 Nov 2009 12:27:25 -0000	1.14
+++ koffice-i18n-1.6.3.ebuild	31 Dec 2009 21:16:26 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild,v 1.14 2009/11/11 12:27:25 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/koffice-i18n/koffice-i18n-1.6.3.ebuild,v 1.15 2009/12/31 21:16:26 ssuominen Exp $
 
 ARTS_REQUIRED=never
 inherit kde
@@ -45,7 +45,7 @@
 src_compile() {
 	local _S="${S}"
 	local _KDE_S="${KDE_S}"
-	for dir in ${WORKDIR}/*; do
+	for dir in "${WORKDIR}"/*; do
 		S=${dir}
 		KDE_S=${dir}
 		kde_src_compile






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-12-31 21:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-11 12:27 [gentoo-commits] gentoo-x86 commit in app-i18n/koffice-i18n: koffice-i18n-1.6.3.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2009-12-31 21:16 Samuli Suominen (ssuominen)
2009-11-11 12:25 Samuli Suominen (ssuominen)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox