diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-07-27 06:33:29 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-07-27 06:33:29 +0800 |
commit | 411f73df3d07c1fcca670fe0166c962333c75503 (patch) | |
tree | 1f980440c0372e9159029cf2999f5e01a186b20f | |
parent | 9024915b87a7c2d5595d46e3398e28a69b08d73e (diff) | |
download | marcuscom-ports-411f73df3d07c1fcca670fe0166c962333c75503.tar.gz marcuscom-ports-411f73df3d07c1fcca670fe0166c962333c75503.tar.zst marcuscom-ports-411f73df3d07c1fcca670fe0166c962333c75503.zip |
Fix the invest-applet.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6830 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | x11/gnome-applets/Makefile | 3 | ||||
-rw-r--r-- | x11/gnome-applets/files/patch-invest-applet_invest___init__.py | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/x11/gnome-applets/Makefile b/x11/gnome-applets/Makefile index f389f28d7..675bf9021 100644 --- a/x11/gnome-applets/Makefile +++ b/x11/gnome-applets/Makefile @@ -3,11 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/x11/gnome-applets/Makefile,v 1.127 2006/07/26 06:00:10 marcus Exp $ +# $MCom: ports/x11/gnome-applets/Makefile,v 1.128 2006/07/26 21:36:26 ahze Exp $ # PORTNAME= gnome-applets PORTVERSION= 2.15.2 +PORTREVISION= 1 CATEGORIES= x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/x11/gnome-applets/files/patch-invest-applet_invest___init__.py b/x11/gnome-applets/files/patch-invest-applet_invest___init__.py new file mode 100644 index 000000000..8a73de7c0 --- /dev/null +++ b/x11/gnome-applets/files/patch-invest-applet_invest___init__.py @@ -0,0 +1,11 @@ +--- invest-applet/invest/__init__.py.orig Wed Jul 26 17:39:53 2006 ++++ invest-applet/invest/__init__.py Wed Jul 26 17:40:21 2006 +@@ -22,7 +22,7 @@ if UNINSTALLED_INVEST: + SHARED_DATA_DIR = abspath(join(dirname(__file__), '..', 'data')) + GLADE_DATA_DIR = SHARED_DATA_DIR + else: +- SHARED_DATA_DIR = join(DATA_DIR, "gnome-applets", "invest-applet") ++ SHARED_DATA_DIR = join(DATA_DIR, "gnome-applets") + GLADE_DATA_DIR = join(SHARED_DATA_DIR, "glade") + print "Data Dir: %s" % SHARED_DATA_DIR + |