public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in eclass: gst-plugins10.eclass
@ 2010-08-12 10:48 Peter Volkov (pva)
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Volkov (pva) @ 2010-08-12 10:48 UTC (permalink / raw
  To: gentoo-commits

pva         10/08/12 10:48:59

  Modified:             gst-plugins10.eclass
  Log:
  Fix quotation.

Revision  Changes    Path
1.3                  eclass/gst-plugins10.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins10.eclass?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins10.eclass?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins10.eclass?r1=1.2&r2=1.3

Index: gst-plugins10.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gst-plugins10.eclass	1 Jan 2006 01:14:59 -0000	1.2
+++ gst-plugins10.eclass	12 Aug 2010 10:48:59 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v 1.2 2006/01/01 01:14:59 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v 1.3 2010/08/12 10:48:59 pva Exp $
 
 # Author : foser <foser@gentoo.org>
 
@@ -47,16 +47,16 @@
 
 gst-plugins10_find_plugin_dir() {
 
-	if [ ! -d ${S}/ext/${GST_PLUGINS_BUILD_DIR} ]; then
-		if [ ! -d ${S}/sys/${GST_PLUGINS_BUILD_DIR} ]; then
+	if [[ ! -d ${S}/ext/${GST_PLUGINS_BUILD_DIR} ]]; then
+		if [[ ! -d ${S}/sys/${GST_PLUGINS_BUILD_DIR} ]]; then
 			ewarn "No such plugin directory"
 			die
 		fi
 		einfo "Building system plugin ..."
-		cd ${S}/sys/${GST_PLUGINS_BUILD_DIR}
+		cd "${S}"/sys/${GST_PLUGINS_BUILD_DIR}
 	else
 		einfo "Building external plugin ..."
-		cd ${S}/ext/${GST_PLUGINS_BUILD_DIR}
+		cd "${S}"/ext/${GST_PLUGINS_BUILD_DIR}
 	fi
 
 }






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

* [gentoo-commits] gentoo-x86 commit in eclass: gst-plugins10.eclass
@ 2011-04-12  5:55 Mart Raudsepp (leio)
  0 siblings, 0 replies; 2+ messages in thread
From: Mart Raudsepp (leio) @ 2011-04-12  5:55 UTC (permalink / raw
  To: gentoo-commits

leio        11/04/12 05:55:30

  Modified:             gst-plugins10.eclass
  Log:
  Print out the plugin that will be built, as we know that information anyway (the build dir, anyhow)

Revision  Changes    Path
1.4                  eclass/gst-plugins10.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins10.eclass?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins10.eclass?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gst-plugins10.eclass?r1=1.3&r2=1.4

Index: gst-plugins10.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gst-plugins10.eclass	12 Aug 2010 10:48:59 -0000	1.3
+++ gst-plugins10.eclass	12 Apr 2011 05:55:30 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v 1.3 2010/08/12 10:48:59 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v 1.4 2011/04/12 05:55:30 leio Exp $
 
 # Author : foser <foser@gentoo.org>
 
@@ -11,8 +11,8 @@
 #
 # 3rd party applications using gstreamer now should depend on a set of plugins as
 # defined in the source, in case of spider usage obtain recommended plugins to use from
-# Gentoo developers responsible for gstreamer <gnome@gentoo.org>, the application developer
-# or the gstreamer team.
+# Gentoo developers responsible for gstreamer <gstreamer@gentoo.org> or the application
+# developer.
 
 inherit eutils
 
@@ -52,10 +52,10 @@
 			ewarn "No such plugin directory"
 			die
 		fi
-		einfo "Building system plugin ..."
+		einfo "Building system plugin ${GST_PLUGINS_BUILD_DIR} ..."
 		cd "${S}"/sys/${GST_PLUGINS_BUILD_DIR}
 	else
-		einfo "Building external plugin ..."
+		einfo "Building external plugin ${GST_PLUGINS_BUILD_DIR} ..."
 		cd "${S}"/ext/${GST_PLUGINS_BUILD_DIR}
 	fi
 
@@ -78,4 +78,3 @@
 	done
 
 }
-






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

end of thread, other threads:[~2011-04-12  5:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-12 10:48 [gentoo-commits] gentoo-x86 commit in eclass: gst-plugins10.eclass Peter Volkov (pva)
  -- strict thread matches above, loose matches on Subject: below --
2011-04-12  5:55 Mart Raudsepp (leio)

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