diff options
author | Olivier Crête <tester@gentoo.org> | 2009-03-30 04:24:15 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2009-03-30 04:24:15 +0000 |
commit | 539707bf51723d3277f5a349a49a0016254c2533 (patch) | |
tree | 26bd274625f36dd08b908531a5a7e45a7eb0f4fe /eclass/gst-plugins-good.eclass | |
parent | amd64 stable, bug 264121 (diff) | |
download | gentoo-2-539707bf51723d3277f5a349a49a0016254c2533.tar.gz gentoo-2-539707bf51723d3277f5a349a49a0016254c2533.tar.bz2 gentoo-2-539707bf51723d3277f5a349a49a0016254c2533.zip |
Add a few new plugins, generate all makefiles, shave wrappers need to be built
Diffstat (limited to 'eclass/gst-plugins-good.eclass')
-rw-r--r-- | eclass/gst-plugins-good.eclass | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/eclass/gst-plugins-good.eclass b/eclass/gst-plugins-good.eclass index 6914ad79a96e..a3d2391302a6 100644 --- a/eclass/gst-plugins-good.eclass +++ b/eclass/gst-plugins-good.eclass @@ -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-plugins-good.eclass,v 1.16 2008/12/05 20:39:36 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-good.eclass,v 1.17 2009/03/30 04:24:15 tester Exp $ # Author : foser <foser@gentoo.org>, zaheerm <zaheerm@gentoo.org> @@ -77,22 +77,22 @@ gst-plugins-good_src_configure() { gst-plugins-good_src_unpack() { - local makefiles +# local makefiles unpack ${A} # Link with the syswide installed gst-libs if needed - gst-plugins10_find_plugin_dir - cd ${S} +# gst-plugins10_find_plugin_dir +# cd ${S} # Remove generation of any other Makefiles except the plugin's Makefile - if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then - makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" - elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then - makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" - fi - sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ - -i ${S}/configure +# if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then +# makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile" +# elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then +# makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile" +# fi +# sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \ +# -i ${S}/configure } |