From 5f240383e01e8620512df7b6edbf4c0615548a48 Mon Sep 17 00:00:00 2001 From: itetcu Date: Thu, 16 Oct 2008 10:25:06 +0000 Subject: Fix opera plugin wrapper and bump PORTREVISION. PR: ports/128080 Submitted by: KOIE Hidetaka Approved by: maintainer Committed from: EuroBSDCon2008 Dev Summit :) --- www/opera/files/operapluginwrapper | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'www/opera/files') diff --git a/www/opera/files/operapluginwrapper b/www/opera/files/operapluginwrapper index 20fc5d1c16ea..bb5e450c2220 100644 --- a/www/opera/files/operapluginwrapper +++ b/www/opera/files/operapluginwrapper @@ -1,7 +1,19 @@ #!/bin/sh -if [ brandelf $3 | grep "FreeBSD" ]; then - exec $0.freebsd $@ -else - exec $0.linux $@ +if [ -n "$4" ]; then +ELFTYPE=`brandelf $4` +elif [ -n "$3" ]; then +ELFTYPE=`brandelf $3` fi + +WRAPPER="freebsd" +case "${ELFTYPE}" in +*SVR4*|*Linux*) +if [ -x "$0.linux" ]; then +WRAPPER="linux" +fi +;; +esac + +exec $0.$WRAPPER $@ + -- cgit