diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-09-27 15:13:40 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-09-27 15:13:40 +0000 |
commit | 9e4d9ce833d8c07494bbd7c1dd70c9ddfc143228 (patch) | |
tree | 9653a58794a34d372b6474f69caa55d2771aa51e /www/galeon | |
parent | adf6a02b5a5126720b1c6bfcfa9cf5df3aea37f7 (diff) | |
download | FreeBSD-ports-9e4d9ce833d8c07494bbd7c1dd70c9ddfc143228.zip FreeBSD-ports-9e4d9ce833d8c07494bbd7c1dd70c9ddfc143228.tar.gz |
Make galeon-config-tool working on FreeBSD.
Submitted by: Alexander Leidinger <Alexander@Leidinger.net>
Diffstat (limited to 'www/galeon')
-rw-r--r-- | www/galeon/Makefile | 1 | ||||
-rw-r--r-- | www/galeon/files/patch-galeon-config-tool.in | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/www/galeon/Makefile b/www/galeon/Makefile index d8fbbb9..0b1ec6d 100644 --- a/www/galeon/Makefile +++ b/www/galeon/Makefile @@ -7,6 +7,7 @@ PORTNAME= galeon PORTVERSION= 0.12.2 +PORTREVISION= 1 CATEGORIES= www gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/www/galeon/files/patch-galeon-config-tool.in b/www/galeon/files/patch-galeon-config-tool.in new file mode 100644 index 0000000..baaed01 --- /dev/null +++ b/www/galeon/files/patch-galeon-config-tool.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- galeon-config-tool.in.orig Sat Sep 15 14:58:19 2001 ++++ galeon-config-tool.in Thu Sep 27 18:10:38 2001 +@@ -4,7 +4,7 @@ + + clean () { + +- if ps hu -C galeon-bin | grep $USER &>/dev/null 2>&1; then ++ if ps | awk '{print $5}' | grep -q galeon-bin; then + echo "Sorry, this script won't work while galeon is running" + + else |