diff options
author | tnn <tnn> | 2010-07-05 08:14:42 +0000 |
---|---|---|
committer | tnn <tnn> | 2010-07-05 08:14:42 +0000 |
commit | ce2ecbcec750a1a093e8bde53765e605c0fa3d9a (patch) | |
tree | cfe0b874ec0d92cd1d291c37327a49a2154d80e9 /x11/tint2 | |
parent | 7915a331e6e76ecef9891cf601a40dcb8f82b41b (diff) | |
download | pkgsrc-ce2ecbcec750a1a093e8bde53765e605c0fa3d9a.tar.gz |
fix linuxism
Diffstat (limited to 'x11/tint2')
-rw-r--r-- | x11/tint2/distinfo | 3 | ||||
-rw-r--r-- | x11/tint2/patches/patch-ac | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/tint2/distinfo b/x11/tint2/distinfo index b1422307dda..c06ef95338c 100644 --- a/x11/tint2/distinfo +++ b/x11/tint2/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.3 2010/07/05 08:06:15 tnn Exp $ +$NetBSD: distinfo,v 1.4 2010/07/05 08:14:42 tnn Exp $ SHA1 (tint2-0.11.tar.bz2) = 9752255529673dabf13e7437afd1cd0b39d9c92b RMD160 (tint2-0.11.tar.bz2) = f094e81aec1fae98a88e8392c4c9e6b5fecb6120 Size (tint2-0.11.tar.bz2) = 91716 bytes SHA1 (patch-aa) = 2865cdb561d856615c607d589af9040bfc95e14b SHA1 (patch-ab) = 41d3059bc5d329a2f8ad55e05a43ef3e2e199fec +SHA1 (patch-ac) = 3f95a80eabb16e6417fc843f9fef1a697487426d diff --git a/x11/tint2/patches/patch-ac b/x11/tint2/patches/patch-ac new file mode 100644 index 00000000000..9ebe730acf5 --- /dev/null +++ b/x11/tint2/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2010/07/05 08:14:42 tnn Exp $ + +--- src/tint2conf/tintwizard.py.orig 2010-05-09 19:00:13.000000000 +0000 ++++ src/tint2conf/tintwizard.py +@@ -1112,7 +1112,7 @@ class TintWizardGUI(gtk.Window): + def apply(self, widget, event=None, confirmChange=True): + """Applies the current config to tint2.""" + # Check if tint2 is running +- procs = os.popen('pidof "tint2"') # Check list of active processes for tint2 ++ procs = os.popen('pgrep "^tint2$"') # Check list of active processes for tint2 + pids = [] # List of process ids for tint2 + + for proc in procs.readlines(): |