Difference between revisions of "NSPluginWrapper"

From CBLFS
Jump to navigationJump to search
(New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://gwenole.beauchesne.info/projects/nspluginwrapper/files/nspluginwrapper-1.2.0.tar.bz2 |} ---- {{Pac...)
 
Line 34: Line 34:
  
 
  make install
 
  make install
 +
 +
= Configuring =
 +
 +
Wrapping a plug is as easy as:
 +
 +
nspluginwrapper -i /path/to/plugin.so

Revision as of 18:53, 30 December 2008

Download Source: http://gwenole.beauchesne.info/projects/nspluginwrapper/files/nspluginwrapper-1.2.0.tar.bz2

Introduction to NSPluginWrapper

nspluginwrapper is an Open Source compatibility plugin for Netscape 4 (NPAPI) plugins. That is, it enables you to use plugins on platforms they were not built for. For example, you can use the Adobe Flash plugin on Linux/x86_64, NetBSD and FreeBSD platforms. Another goal of nspluginwrapper is to confine plugins into a specific execution domain, for reliability or security purposes (with SELinux or RSBAC). i.e. a sandbox in Google Chrome terminology.

Project Homepage: http://gwenole.beauchesne.info//en/projects/nspluginwrapper

Dependencies

Required

Optional

Pure64

Is this even possible? Need to check.

Multilib

Compile the package:

PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --with-cc="gcc ${BUILD64}" \
    --with-cxx="g++ ${BUILD64}" \
    --with-x11-prefix="${XORG_PREFIX}" &&
make

Install the package:

make install

Configuring

Wrapping a plug is as easy as:

nspluginwrapper -i /path/to/plugin.so