diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-03-02 05:42:41 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-03-02 05:42:41 +0800 |
commit | c488cbb4d058d70d7538b4ac1420c07b72e29ea0 (patch) | |
tree | 734dfacde4c02195bdcf8f7eac7e22f15e97bb53 /deskutils/deskbar-applet | |
parent | 57a019d6b4296ec8f760d4086b70f016e170c9a8 (diff) | |
download | marcuscom-ports-c488cbb4d058d70d7538b4ac1420c07b72e29ea0.tar marcuscom-ports-c488cbb4d058d70d7538b4ac1420c07b72e29ea0.tar.gz marcuscom-ports-c488cbb4d058d70d7538b4ac1420c07b72e29ea0.tar.bz2 marcuscom-ports-c488cbb4d058d70d7538b4ac1420c07b72e29ea0.tar.lz marcuscom-ports-c488cbb4d058d70d7538b4ac1420c07b72e29ea0.tar.xz marcuscom-ports-c488cbb4d058d70d7538b4ac1420c07b72e29ea0.tar.zst marcuscom-ports-c488cbb4d058d70d7538b4ac1420c07b72e29ea0.zip |
Correct path to browser searchplugins.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5821 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'deskutils/deskbar-applet')
-rw-r--r-- | deskutils/deskbar-applet/Makefile | 4 | ||||
-rw-r--r-- | deskutils/deskbar-applet/files/patch-deskbar_handlers_mozilla.py | 18 |
2 files changed, 21 insertions, 1 deletions
diff --git a/deskutils/deskbar-applet/Makefile b/deskutils/deskbar-applet/Makefile index 6b96a4f34..e3bda5bd2 100644 --- a/deskutils/deskbar-applet/Makefile +++ b/deskutils/deskbar-applet/Makefile @@ -3,11 +3,12 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/deskutils/deskbar-applet/Makefile,v 1.13 2006/02/24 05:41:37 marcus Exp $ +# $MCom: ports/deskutils/deskbar-applet/Makefile,v 1.14 2006/02/28 20:57:07 marcus Exp $ # PORTNAME= deskbar-applet PORTVERSION= 2.13.92 +PORTREVISION= 1 CATEGORIES= deskutils MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.13 @@ -57,6 +58,7 @@ post-patch: 's|/usr/share/applications|${X11BASE}/share/gnome/applications|g' @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g ; \ s|%%X11BASE%%|${X11BASE}|g' \ + ${WRKSRC}/deskbar/handlers/mozilla.py \ ${WRKSRC}/deskbar/Utils.py .if !defined(DISPLAY) diff --git a/deskutils/deskbar-applet/files/patch-deskbar_handlers_mozilla.py b/deskutils/deskbar-applet/files/patch-deskbar_handlers_mozilla.py new file mode 100644 index 000000000..a668777c1 --- /dev/null +++ b/deskutils/deskbar-applet/files/patch-deskbar_handlers_mozilla.py @@ -0,0 +1,18 @@ +--- deskbar/handlers/mozilla.py.orig Wed Mar 1 13:32:12 2006 ++++ deskbar/handlers/mozilla.py Wed Mar 1 13:33:19 2006 +@@ -189,6 +189,7 @@ class MozillaSearchHandler(deskbar.Handl + get_firefox_home_file("searchplugins"), + get_firefox_home_file("search"), + expanduser("~/.mozilla/searchplugins"), ++ "%%X11BASE%%/lib/firefox/searchplugins", + "/usr/lib/firefox/searchplugins", + "/usr/local/lib/firefox/searchplugins", + "/usr/lib/mozilla-firefox/searchplugins", +@@ -197,6 +198,7 @@ class MozillaSearchHandler(deskbar.Handl + smart_dirs = [ + get_mozilla_home_file("search"), + expanduser("~/.mozilla/searchplugins"), ++ "%%X11BASE%%/lib/mozilla/searchplugins", + "/usr/lib/mozilla/searchplugins", + "/usr/local/lib/mozilla/searchplugins"] + |