head	1.5;
access;
symbols
	RELEASE_8_3_0:1.4
	RELEASE_9_0_0:1.4
	RELEASE_7_4_0:1.4
	RELEASE_8_2_0:1.4
	RELEASE_6_EOL:1.4
	RELEASE_8_1_0:1.4
	RELEASE_7_3_0:1.4
	old_RELEASE_8_0_0:1.3
	old_RELEASE_7_2_0:1.3
	old_RELEASE_7_1_0:1.2
	old_RELEASE_6_4_0:1.2
	old_RELEASE_5_EOL:1.2
	old_RELEASE_7_0_0:1.2
	old_RELEASE_6_3_0:1.2
	old_PRE_XORG_7:1.2;
locks; strict;
comment	@# @;


1.5
date	2013.03.20.00.40.30;	author svnexp;	state dead;
branches;
next	1.4;

1.4
date	2009.12.07.18.02.19;	author jkim;	state Exp;
branches;
next	1.3;

1.3
date	2009.01.09.08.31.01;	author beech;	state Exp;
branches;
next	1.2;

1.2
date	2007.04.06.05.00.45;	author rafan;	state Exp;
branches;
next	1.1;

1.1
date	2007.04.04.17.05.46;	author rafan;	state Exp;
branches;
next	;


desc
@@


1.5
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/314680
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@--- configure.orig	2009-01-02 11:54:10.000000000 +0300
+++ configure	2009-01-09 05:42:24.000000000 +0300
@@@@ -6,13 +6,8 @@@@
 PACKAGE=nspluginwrapper
 
 # set temporary file name
-if test ! -z "$TMPDIR" ; then
-    TMPDIR1="${TMPDIR}"
-elif test ! -z "$TEMPDIR" ; then
-    TMPDIR1="${TEMPDIR}"
-else
-    TMPDIR1="/tmp"
-fi
+mkdir -p tmp
+TMPDIR1="./tmp"
 
 TMPC="${TMPDIR1}/npw-conf-${RANDOM}-$$-${RANDOM}.c"
 TMPO="${TMPDIR1}/npw-conf-${RANDOM}-$$-${RANDOM}.o"
@


1.4
log
@A compatibility plugin for Mozilla NPAPI (development version).

Note: The Linux/i386 RPM was built by me on Fedora 10 via VirtualBox
because the author did not provide them.  For more information about
the development branch, please read:

http://gwenole.beauchesne.info/en/blog/2009/01/02/nspluginwrapper_1.3.0

PR:		ports/141179
@
text
@@


1.3
log
@- Fix path to npwrapper.so on amd64
- Bump portrevision

PR:		ports/130317
Submitted by:	Yuri Pankov <yuri.pankov@@gmail.com>
Approved by:	David Grochowski <malus.x@@gmail.com> (maintainer)
@
text
@a18 9
@@@@ -728,7 +723,7 @@@@
 elif test "$host_cpu" = "x86_64" ; then
     echo "ARCH=x86_64" >> $config_mak
     echo "#define HOST_X86_64 1" >> $config_h
-    echo "#define HOST_ARCH \"x86_64\"" >> $config_h
+    echo "#define HOST_ARCH \"amd64\"" >> $config_h
 elif test "$host_cpu" = "ppc" ; then
     echo "ARCH=ppc" >> $config_mak
     echo "#define HOST_PPC 1" >> $config_h
@


1.2
log
@- Update to 0.9.91.4

PR:		ports/111291
Submitted by:	rafan
Approved by:	Dave Grochowski <malus.x at gmail.com> (maintainer)
@
text
@d1 2
a2 2
--- ./configure.orig	Sun Mar  4 23:01:22 2007
+++ ./configure	Wed Apr  4 20:20:59 2007
d19 9
@


1.1
log
@Add nspluginwrapper 0.9.91.3, a compatibility plugin for Netscape 4
(NPAPI) plugins.

PR:		ports/111166
Submitted by:	Dave Grochowski
@
text
@a18 35
@@@@ -75,6 +70,9 @@@@
 --prefix=*)
     prefix=`echo $opt | cut -d '=' -f 2`
     ;;
+--x11=*)
+    x_base_dirs=`echo $opt | cut -d '=' -f 2`
+    ;;
 --pkglibdir=*)
     pkglibdir=`echo $opt | cut -d '=' -f 2`
     ;;
@@@@ -279,10 +277,12 @@@@
 fi
 
 # check for X11 base dir
-x_base_dirs='
-/usr
-/usr/X11R6
-/usr/local/X11R6'
+if test -z "$x_base_dirs"; then
+	x_base_dirs='
+	/usr
+	/usr/X11R6
+	/usr/local'
+fi
 for dir in $x_base_dirs; do
     x_include_dir="$dir/include"
     if test -f $x_include_dir/X11/Intrinsic.h; then
@@@@ -407,6 +407,7 @@@@
 echo "  --target-os=OS              build plugin support for target OS [$target_os]"
 echo "  --target-cpu=CPU            build plugin support for target CPU [$target_cpu]"
 echo "  --with-viewer               build viewer [$build_viewer]"
+echo "  --x11=PREFIX                path to X11 base"
 echo ""
 echo "Advanced options (experts only):"
 echo "  --source-path=PATH          path of source code [$source_path]"
@

