View | Details | Raw Unified | Return to bug 135661
Collapse All | Expand All

(-)gtg/Makefile (+1 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	gtg
8
PORTNAME=	gtg
9
PORTVERSION=	0.1.1
9
PORTVERSION=	0.1.1
10
PORTREVISION=	1
10
CATEGORIES=	deskutils gnome python
11
CATEGORIES=	deskutils gnome python
11
MASTER_SITES=	http://launchpad.net/gtg/trunk/${PORTVERSION}/+download/ \
12
MASTER_SITES=	http://launchpad.net/gtg/trunk/${PORTVERSION}/+download/ \
12
		http://freebsd.unixfreunde.de/sources/
13
		http://freebsd.unixfreunde.de/sources/
(-)gtg/files/patch-GTG___init__.py (-6 / +15 lines)
Lines 1-11 Link Here
1
--- GTG/__init__.py.orig	2009-03-07 02:09:57.000000000 +0300
1
--- GTG/__init__.py.orig	2009-04-04 01:00:16.000000000 +0400
2
+++ GTG/__init__.py	2009-03-16 01:19:21.000000000 +0300
2
+++ GTG/__init__.py	2009-06-17 12:59:18.000000000 +0400
3
@@ -22,7 +22,7 @@
3
@@ -32,7 +32,7 @@
4
 EMAIL           = "gtg@lists.launchpad.net"
4
 EMAIL           = "gtg@lists.launchpad.net"
5
 VERSION         = '0.1'
5
 VERSION         = '0.1.1'
6
 LOCAL_ROOTDIR   = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) 
6
 LOCAL_ROOTDIR   = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) 
7
-DIST_ROOTDIR    = "/usr/share/gtg"
7
-DIST_ROOTDIR    = "/usr/share/gtg"
8
+DIST_ROOTDIR    = "/usr/local/share/gtg"
8
+DIST_ROOTDIR    = "/usr/local/share/gtg"
9
 
9
 
10
 if not os.path.isdir( os.path.join(LOCAL_ROOTDIR,'data') ) :
10
 # CREDITS
11
     DATA_DIR = DIST_ROOTDIR
11
 AUTHORS     = ["Main developers:", \
12
@@ -60,7 +60,7 @@
13
 GETTEXT_DOMAIN = 'gtg'
14
 LOCALE_PATH = abspath(join(dirname(__file__), pardir, 'locales'))
15
 if not os.path.isdir(LOCALE_PATH):
16
-    LOCALE_PATH = '/usr/share/locale'
17
+    LOCALE_PATH = '/usr/local/share/locale'
18
 languages_used = []
19
 lc, encoding = locale.getdefaultlocale()
20
 if lc:

Return to bug 135661