removed plugin configuration utility
This commit is contained in:
parent
15debc1757
commit
9ba2f30c2e
@ -1,65 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# The contents of this file are subject to the Netscape Public
|
|
||||||
# License Version 1.1 (the "License"); you may not use this file
|
|
||||||
# except in compliance with the License. You may obtain a copy of
|
|
||||||
# the License at http://www.mozilla.org/NPL/
|
|
||||||
#
|
|
||||||
# Software distributed under the License is distributed on an "AS
|
|
||||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
||||||
# implied. See the License for the specific language governing
|
|
||||||
# rights and limitations under the License.
|
|
||||||
#
|
|
||||||
# The Original Code is mozilla.org code.
|
|
||||||
#
|
|
||||||
# The Initial Developer of the Original Code is Netscape
|
|
||||||
# Communications Corporation. Portions created by Netscape are
|
|
||||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
||||||
# Rights Reserved.
|
|
||||||
#
|
|
||||||
# Contributor(s):
|
|
||||||
#
|
|
||||||
|
|
||||||
##
|
|
||||||
## Usage:
|
|
||||||
##
|
|
||||||
## $ mozilla-plugin-config
|
|
||||||
##
|
|
||||||
## This script is meant to configure plugins from the mozilla
|
|
||||||
## rpm installation.
|
|
||||||
##
|
|
||||||
## The script will setup all the plugin voodoo needed to make
|
|
||||||
## mozilla work.
|
|
||||||
|
|
||||||
##
|
|
||||||
## Variables
|
|
||||||
##
|
|
||||||
MOZ_ARCH=$(uname -m)
|
|
||||||
case $MOZ_ARCH in
|
|
||||||
x86_64 | ia64 | s390 )
|
|
||||||
MOZ_LIB_DIR="/usr/lib64"
|
|
||||||
SECONDARY_LIB_DIR="/usr/lib"
|
|
||||||
;;
|
|
||||||
* )
|
|
||||||
MOZ_LIB_DIR="/usr/lib"
|
|
||||||
SECONDARY_LIB_DIR="/usr/lib64"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [ ! -x $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin ]; then
|
|
||||||
if [ ! -x $SECONDARY_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin ]; then
|
|
||||||
echo "Error: $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin not found"
|
|
||||||
if [ -d $SECONDARY_LIB_DIR ]; then
|
|
||||||
echo " $SECONDARY_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin not found"
|
|
||||||
fi
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
MOZ_LIB_DIR="$SECONDARY_LIB_DIR"
|
|
||||||
fi
|
|
||||||
|
|
||||||
export LD_LIBRARY_PATH="$MOZ_LIB_DIR/firefox-FIREFOX_VERSION"
|
|
||||||
|
|
||||||
# Set-up installed plugins
|
|
||||||
|
|
||||||
$MOZ_DIST_BIN/plugin-configuration -c -f -q > /dev/null 2>&1
|
|
||||||
|
|
@ -75,7 +75,7 @@ export MOZILLA_FIVE_HOME
|
|||||||
## Select the propper plugin dir
|
## Select the propper plugin dir
|
||||||
## Wrapped plug-ins are located in /lib/mozilla/plugins-wrapped
|
## Wrapped plug-ins are located in /lib/mozilla/plugins-wrapped
|
||||||
##
|
##
|
||||||
if [ -x "$MOZ_LIB_DIR/nspluginwrapper/npviewer" ]
|
if [ -x "/usr/bin/mozilla-plugin-config" ]
|
||||||
then
|
then
|
||||||
MOZ_PLUGIN_DIR="plugins-wrapped"
|
MOZ_PLUGIN_DIR="plugins-wrapped"
|
||||||
else
|
else
|
||||||
@ -147,9 +147,9 @@ function open_compose() {
|
|||||||
##
|
##
|
||||||
## If plugins are wrapped, check them
|
## If plugins are wrapped, check them
|
||||||
##
|
##
|
||||||
if [ -x "$MOZ_LIB_DIR/nspluginwrapper/npviewer" ]
|
if [ -x "/usr/bin/mozilla-plugin-config" ]
|
||||||
then
|
then
|
||||||
/usr/bin/firefox-plugin-config
|
/usr/bin/mozilla-plugin-config
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check to see if there's an already running instance or not
|
# check to see if there's an already running instance or not
|
||||||
|
36
firefox.spec
36
firefox.spec
@ -6,9 +6,6 @@
|
|||||||
%define cairo_version 0.5
|
%define cairo_version 0.5
|
||||||
%define builddir %{_builddir}/mozilla
|
%define builddir %{_builddir}/mozilla
|
||||||
%define build_devel_package 1
|
%define build_devel_package 1
|
||||||
%define plugin_config_version 1.1
|
|
||||||
%define plugin_config_name plugin-config-%{plugin_config_version}
|
|
||||||
%define plugin_config_binary plugin-configuration
|
|
||||||
|
|
||||||
%define official_branding 1
|
%define official_branding 1
|
||||||
|
|
||||||
@ -25,7 +22,6 @@ Group: Applications/Internet
|
|||||||
%define tarball firefox-2.0rc3-source.tar.bz2
|
%define tarball firefox-2.0rc3-source.tar.bz2
|
||||||
%endif
|
%endif
|
||||||
Source0: %{tarball}
|
Source0: %{tarball}
|
||||||
Source1: %{plugin_config_name}.tar.gz
|
|
||||||
Source2: firefox-langpacks-%{version}-20070731.tar.bz2
|
Source2: firefox-langpacks-%{version}-20070731.tar.bz2
|
||||||
Source10: firefox-mozconfig
|
Source10: firefox-mozconfig
|
||||||
Source11: firefox-mozconfig-branded
|
Source11: firefox-mozconfig-branded
|
||||||
@ -34,7 +30,6 @@ Source20: firefox.desktop
|
|||||||
Source21: firefox.sh.in
|
Source21: firefox.sh.in
|
||||||
Source22: firefox.png
|
Source22: firefox.png
|
||||||
Source23: firefox.1
|
Source23: firefox.1
|
||||||
Source24: firefox-plugin-config.sh.in
|
|
||||||
Source50: firefox-xremote-client.sh.in
|
Source50: firefox-xremote-client.sh.in
|
||||||
Source100: find-external-requires
|
Source100: find-external-requires
|
||||||
Source101: add-gecko-provides.in
|
Source101: add-gecko-provides.in
|
||||||
@ -147,7 +142,7 @@ removed in favor of xulrunner-devel.
|
|||||||
#---------------------------------------------------------------------
|
#---------------------------------------------------------------------
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n mozilla -a 1
|
%setup -q -n mozilla
|
||||||
%patch1 -p1 -b .link-layout
|
%patch1 -p1 -b .link-layout
|
||||||
#%patch3 -p1
|
#%patch3 -p1
|
||||||
#%patch4 -p1
|
#%patch4 -p1
|
||||||
@ -222,12 +217,6 @@ export LDFLAGS="-Wl,-rpath,%{mozappdir}"
|
|||||||
export MAKE="gmake %{moz_make_flags}"
|
export MAKE="gmake %{moz_make_flags}"
|
||||||
make -f client.mk build
|
make -f client.mk build
|
||||||
|
|
||||||
#Build plugin configuration utility
|
|
||||||
pushd %{plugin_config_name}
|
|
||||||
./configure --prefix=/usr CFLAGS="$RPM_OPT_FLAGS"
|
|
||||||
make
|
|
||||||
popd
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
#---------------------------------------------------------------------
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -286,7 +275,6 @@ EOF
|
|||||||
|
|
||||||
# own mozilla plugin dir (#135050)
|
# own mozilla plugin dir (#135050)
|
||||||
%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins
|
%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins
|
||||||
%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins-wrapped
|
|
||||||
|
|
||||||
# Install langpacks
|
# Install langpacks
|
||||||
%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/extensions
|
%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/extensions
|
||||||
@ -360,23 +348,6 @@ install -c -m 644 LICENSE $RPM_BUILD_ROOT%{mozappdir}
|
|||||||
touch $RPM_BUILD_ROOT%{mozappdir}/components/compreg.dat
|
touch $RPM_BUILD_ROOT%{mozappdir}/components/compreg.dat
|
||||||
touch $RPM_BUILD_ROOT%{mozappdir}/components/xpti.dat
|
touch $RPM_BUILD_ROOT%{mozappdir}/components/xpti.dat
|
||||||
|
|
||||||
# Install plugin-config utility
|
|
||||||
pushd %{plugin_config_name}
|
|
||||||
DESTDIR=$RPM_BUILD_ROOT make install
|
|
||||||
|
|
||||||
cd $RPM_BUILD_ROOT/usr/bin
|
|
||||||
mv %{plugin_config_binary} $RPM_BUILD_ROOT%{mozappdir}
|
|
||||||
|
|
||||||
cd $RPM_BUILD_ROOT/usr/doc
|
|
||||||
mv plugin-config $RPM_BUILD_ROOT%{mozappdir}
|
|
||||||
popd
|
|
||||||
|
|
||||||
# set up the firefox plugin configuration script
|
|
||||||
%{__cat} %{SOURCE24} | %{__sed} -e 's,FIREFOX_VERSION,%{version},g' > \
|
|
||||||
$RPM_BUILD_ROOT%{_bindir}/firefox-plugin-config
|
|
||||||
%{__chmod} 755 $RPM_BUILD_ROOT%{_bindir}/firefox-plugin-config
|
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
#---------------------------------------------------------------------
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
@ -386,7 +357,6 @@ popd
|
|||||||
|
|
||||||
%post
|
%post
|
||||||
update-desktop-database %{_datadir}/applications
|
update-desktop-database %{_datadir}/applications
|
||||||
%{mozappdir}/%{plugin_config_binary} -i -f -q > /dev/null 2>&1
|
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
update-desktop-database %{_datadir}/applications
|
update-desktop-database %{_datadir}/applications
|
||||||
@ -402,7 +372,6 @@ fi
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_bindir}/firefox
|
%{_bindir}/firefox
|
||||||
%{_bindir}/firefox-plugin-config
|
|
||||||
%exclude %{_bindir}/firefox-config
|
%exclude %{_bindir}/firefox-config
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
%{_datadir}/applications/mozilla-%{name}.desktop
|
%{_datadir}/applications/mozilla-%{name}.desktop
|
||||||
@ -437,8 +406,6 @@ fi
|
|||||||
%{mozappdir}/mozilla-xremote-client
|
%{mozappdir}/mozilla-xremote-client
|
||||||
%{mozappdir}/run-mozilla.sh
|
%{mozappdir}/run-mozilla.sh
|
||||||
%{mozappdir}/regxpcom
|
%{mozappdir}/regxpcom
|
||||||
%{mozappdir}/%{plugin_config_binary}
|
|
||||||
%{mozappdir}/plugin-config/*
|
|
||||||
# XXX See if these are needed still
|
# XXX See if these are needed still
|
||||||
%{mozappdir}/updater*
|
%{mozappdir}/updater*
|
||||||
|
|
||||||
@ -466,6 +433,7 @@ fi
|
|||||||
%changelog
|
%changelog
|
||||||
* Mon Aug 6 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-2
|
* Mon Aug 6 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-2
|
||||||
- unwrapped plugins moved to the old location
|
- unwrapped plugins moved to the old location
|
||||||
|
- removed plugin configuration utility
|
||||||
|
|
||||||
* Sat Aug 4 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-1
|
* Sat Aug 4 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-1
|
||||||
- Update to 2.0.0.6
|
- Update to 2.0.0.6
|
||||||
|
1
sources
1
sources
@ -1,3 +1,2 @@
|
|||||||
73e1094a055496486b1ef685a6bc3960 firefox-langpacks-2.0.0.6-20070731.tar.bz2
|
73e1094a055496486b1ef685a6bc3960 firefox-langpacks-2.0.0.6-20070731.tar.bz2
|
||||||
16fb252fb7b0371894f7101b88fd9076 firefox-2.0.0.6-source.tar.bz2
|
16fb252fb7b0371894f7101b88fd9076 firefox-2.0.0.6-source.tar.bz2
|
||||||
92d71693f1d9d77c0a4d2fcc63de17b2 plugin-config-1.1.tar.gz
|
|
||||||
|
Loading…
Reference in New Issue
Block a user