Hi, (Sorry if this is a dupe. I tried sending it before, but it seems to have disappeared into /dev/null.)
I wrote an eselect module for choosing between the browser plugins from net-www/gnash and net-www/netscape-flash, and I was wondering if it could be included in Gentoo (probably not in its current state...). I haven't updated any ebuilds to use it yet, because some details are still open for discussion, in particular the location the plugins should be installed to. If you want to test it in the meantime, create a /usr/lib{,64,32}/nsbrowser/plugins/flash directory, and move the existing Flash .so's from /usr/lib{,64,32}/nsbrowser/plugins to the new directory. eselect will name the plugins after their filenames, minus the .so - possibly not very user-friendly, but this could be fixed by either using a separate display name, or by installing them with nicer names. Note that changing the active plugin while the browser's running may or may not work reliably, it's best to restart it each time. Don't think that's a bug in the module, I'm sure there are enough of those as it is. ;-) Another issue is that it currently only works system-wide. It could be nice to let each user override the global preference, but I don't know of any reliable way to do that. At least SeaMonkey doesn't allow the user's plugin directory to override the global one. Other things: the multilib bits aren't tested much, since unless I've missed something there's no way to build gnash in 32-bit mode on an AMD64 system. On the other hand, it works for 64-bit browsers with the help of net-www/nspluginwrapper. Speaking of which, it would be nice if the two could be made to cooperate a bit better. nspluginwrapper works by generating stubs for all the plugins it finds at merge-time, but it would need to know about the special plugin location. There are two ways I can think of to do this: either patch nspluginwrapper (yuck) or make its ebuild juggle the plugins appropriately (slightly less yuck, but wouldn't work if the administrator tries to generate the stibs manually later on, which is needed if nspluginwrapper is installed before Flash). Any preferences? That's all I can think of for now. Any comments are appreciated.
The original MIME headers for this attachment are: Content-Type: text/plain; name="flash-nsplugin.eselect-0.1" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="flash-nsplugin.eselect-0.1"
# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id: $ # based on kernel.eselect DESCRIPTION="Manage the Flash browser plugin symlink" MAINTAINER="" # XXX #SVN_DATE='$Date: $' #VERSION=$(svn_date_to_version "${SVN_DATE}" ) VERSION="0.1" plugindir="nsbrowser/plugins" flashdir="flash" flashlink="flashplugin.so" # return the appropriate libdir based on command-line parameters get_libdir() { local abi="${1}" libdirs # uses the same approach as java-nsplugin.eselect: hardcode # /usr/lib{,32,64}, since it's not entirely clear how to map the # abi parameter onto list_libdirs's results if [[ -z "${abi}" ]] ; then if [[ -d "${ROOT}/usr/lib" ]] ; then echo "${ROOT}/usr/lib" else die "Can't find libdir! That's bad!" fi elif [[ "${abi}" == 64bit ]] ; then if [[ -d "${ROOT}/usr/lib64" ]] ; then echo "${ROOT}/usr/lib64" else die -q "\"64bit\" doesn't appear to be valid on your system" fi elif [[ "${abi}" == 32bit ]] ; then if [[ -d "${ROOT}/usr/lib32" ]] ; then echo "${ROOT}/usr/lib32" else die -q "\"32bit\" doesn't appear to be valid on your system" fi else die -q "Unrecognised ABI \"${abi}\"" fi } # return the human-readable name for the specified plugin human_name() { local plugin="${1}" plugin="${plugin##*/}" plugin="${plugin%.so}" echo "${plugin#npwrapper.}" } # find a list of Flash plugins in the specified libdir find_targets() { local libdir="${1}" oldshopts oldnullglob="$(shopt -p nullglob )" shopt -s nullglob for p in ${libdir}/${plugindir}/${flashdir}/*.so; do human_name ${p} done ${oldnullglob} } # try to remove the Flash plugin symlink from the specified libdir remove_symlink() { local libdir="${1}" rm "${libdir}/${plugindir}/${flashlink}" } # set the kernel symlink in the specified libdir set_symlink() { local libdir="${1}" target="${2}" if is_number "${target}" ; then targets=( $(find_targets "${libdir}" ) ) target=${targets[$(( ${target} - 1 ))]} fi if [[ -z ${target} ]] ; then die -q "Target \"${target}\" doesn't appear to be valid!" elif [[ -f "${libdir}/${plugindir}/${flashdir}/${target}.so" ]] ; then pushd "${libdir}/${plugindir}" 1>/dev/null ln -s "${flashdir}/${target}.so" "${flashlink}" popd 1>/dev/null elif [[ -f "${libdir}/${plugindir}/${flashdir}/npwrapper.${target}.so" ]] ; then pushd "${libdir}/${plugindir}" 1>/dev/null ln -s "${flashdir}/npwrapper.${target}.so" "${flashlink}" popd 1>/dev/null else die -q "Target \"${target}\" doesn't appear to be valid!" fi } # returns the human-readable name of the Flash plugin in the specified libdir get_current() { local libdir="${1}" human_name "$(canonicalise ${libdir}/${plugindir}/${flashlink} )" } ### show action ### describe_show_parameters() { echo "[ <abi> ]" } describe_show_options() { echo "abi : \"32bit\" or \"64bit\", only valid on multilib systems." } describe_show() { echo "Show the current Flash plugin symlink" } do_show() { local libdir="$(get_libdir "${1}")" plugin write_list_start "Current Flash plugin:" if [[ -L "${libdir}/${plugindir}/${flashlink}" ]] ; then write_kv_list_entry "$(get_current "${libdir}" )" "" else write_kv_list_entry "(unset)" "" fi } ### list action ### describe_list_parameters() { echo "[ <abi> ]" } describe_list_options() { echo "abi : \"32bit\" or \"64bit\", only valid on multilib systems." } describe_list() { echo "List available Flash plugin symlink targets" } do_list() { local libdir="$(get_libdir "$1")" plugin plugin="$(get_current "${libdir}" )" targets=( $(find_targets "${libdir}" ) ) write_list_start "Available Flash plugins:" if [[ -n [EMAIL PROTECTED] ]] ; then local i for (( i = 0 ; i < [EMAIL PROTECTED] ; i = i + 1 )) ; do [[ "${targets[${i}]}" == "${plugin}" ]] && \ targets[${i}]="${targets[${i}]} $(highlight '*' )" done write_numbered_list "[EMAIL PROTECTED]" else write_kv_list_entry "(none found)" "" fi } ### set action ### describe_set_parameters() { echo "[ <abi> ] <target>" } describe_set_options() { echo "abi : \"32bit\" or \"64bit\", only valid on multilib systems." echo "target : Target name or number (from 'list' action)" } describe_set() { echo "Set a new active Flash plugin symlink target" } do_set() { local libdir plugin if [[ $# -lt 2 ]] ; then libdir="$(get_libdir "" )" plugin="${1}" else libdir="$(get_libdir "${1}" )" plugin="${2}" fi if [[ -z "${plugin}" ]] ; then # no parameter die -q "You didn't tell me what to set the symlink to" elif [[ -L "${libdir}/${plugindir}/${flashlink}" ]] ; then # existing symlink if ! remove_symlink "${libdir}" ; then die -q "Couldn't remove existing symlink" elif ! set_symlink "${libdir}" "${plugin}" ; then die -q "Couldn't set a new symlink" fi elif [[ -e "${libdir}/${plugindir}/${flashlink}" ]] ; then # we have something strange die -q "Sorry, ${libdir}/${plugindir}/${flashlink} confuses me" else set_symlink "${libdir}" "${plugin}" || die -q "Couldn't set a new symlink" fi } # Local variables: # mode: shell-script # indent-tabs-mode: t # tab-width: 4 # End: