[csw-devel] SF.net SVN: gar:[9103] csw/mgar/pkg/urxvt/trunk

wahwah at users.sourceforge.net wahwah at users.sourceforge.net
Fri Mar 12 08:14:20 CET 2010


Revision: 9103
          http://gar.svn.sourceforge.net/gar/?rev=9103&view=rev
Author:   wahwah
Date:     2010-03-12 07:14:20 +0000 (Fri, 12 Mar 2010)

Log Message:
-----------
urxvt: Switching the wrapper from /opt/csw/bin/bash to /bin/sh.

Modified Paths:
--------------
    csw/mgar/pkg/urxvt/trunk/Makefile
    csw/mgar/pkg/urxvt/trunk/checksums
    csw/mgar/pkg/urxvt/trunk/files/urxvt-wrapper

Property Changed:
----------------
    csw/mgar/pkg/urxvt/trunk/files/urxvt-wrapper

Modified: csw/mgar/pkg/urxvt/trunk/Makefile
===================================================================
--- csw/mgar/pkg/urxvt/trunk/Makefile	2010-03-12 04:10:27 UTC (rev 9102)
+++ csw/mgar/pkg/urxvt/trunk/Makefile	2010-03-12 07:14:20 UTC (rev 9103)
@@ -28,8 +28,6 @@
 CONFIGURE_ARGS       = $(DIRPATHS)
 CONFIGURE_ARGS      += --disable-perl
 CONFIGURE_ARGS      += --with-terminfo=/opt/csw/share/terminfo
-# For the wrapper
-RUNTIME_DEP_PKGS_CSWurxvt  = CSWbash
 # Because of terminfo
 RUNTIME_DEP_PKGS_CSWurxvt += CSWncurses
 # Shared library dependencies

Modified: csw/mgar/pkg/urxvt/trunk/checksums
===================================================================
--- csw/mgar/pkg/urxvt/trunk/checksums	2010-03-12 04:10:27 UTC (rev 9102)
+++ csw/mgar/pkg/urxvt/trunk/checksums	2010-03-12 07:14:20 UTC (rev 9103)
@@ -1,2 +1,2 @@
 49bb52c99e002bf85eb41d8385d903b5  rxvt-unicode-9.07.tar.bz2
-d1fb3a5f721baf361574880f6cdc92be  urxvt-wrapper
+6deddff9b0c4e0e0c6f3d12b50f5174e  urxvt-wrapper

Modified: csw/mgar/pkg/urxvt/trunk/files/urxvt-wrapper
===================================================================
--- csw/mgar/pkg/urxvt/trunk/files/urxvt-wrapper	2010-03-12 04:10:27 UTC (rev 9102)
+++ csw/mgar/pkg/urxvt/trunk/files/urxvt-wrapper	2010-03-12 07:14:20 UTC (rev 9103)
@@ -1,20 +1,21 @@
-#!/opt/csw/bin/bash
+#!/bin/sh
 #
+# $Id$
+#
 # A workaround because of a Solaris 10 kernel bug:
 # http://bugs.opensolaris.org/view_bug.do?bug_id=6268715
 
-set -u
-
-executable=$(basename $0)
+executable=`basename $0`
 libexec="/opt/csw/libexec"
 libexec_binary="${libexec}/${executable}"
 
-if [[ ! -r "${libexec_binary}" ]]; then
+if [ ! -r "${libexec_binary}" ]; then
   echo "Can't read ${libexec_binary}"
   exit 1
 fi
 
 # The workaround itself:
-export LIBEV_FLAGS=1
+LIBEV_FLAGS=1
+export LIBEV_FLAGS
 
 exec "${libexec_binary}" "$@"


Property changes on: csw/mgar/pkg/urxvt/trunk/files/urxvt-wrapper
___________________________________________________________________
Added: svn:keywords
   + Id


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list