summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authortnn <tnn>2010-07-05 08:14:42 +0000
committertnn <tnn>2010-07-05 08:14:42 +0000
commit14d59a0a0bbd4b809923ba1c944d3236bd93f01a (patch)
treecfe0b874ec0d92cd1d291c37327a49a2154d80e9 /x11
parente7ce2f98214eaf77129785194af46dad5a31bd09 (diff)
downloadpkgsrc-14d59a0a0bbd4b809923ba1c944d3236bd93f01a.tar.gz
fix linuxism
Diffstat (limited to 'x11')
-rw-r--r--x11/tint2/distinfo3
-rw-r--r--x11/tint2/patches/patch-ac13
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():