~p12/awn/master

« back to all changes in this revision

Viewing changes to awn-settings/awn_settings_launcher.py.in

  • Committer: Povilas Kanapickas
  • Date: 2013-11-30 05:46:22 UTC
  • Revision ID: git-v1:6ee2f597f01ec1d0e3e18060255240e8981c95b9
settings: Move automake @-variables out of awnSettings.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
#
 
3
#  Copyright (C) 2013 Povilas Kanapickas <povilas@radix.lt>
 
4
#
 
5
#  This program is free software; you can redistribute it and/or modify
 
6
#  it under the terms of the GNU General Public License as published by
 
7
#  the Free Software Foundation; either version 2 of the License, or
 
8
#  (at your option) any later version.
 
9
#
 
10
#  This program is distributed in the hope that it will be useful,
 
11
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
#  GNU General Public License for more details.
 
14
#
 
15
#  You should have received a copy of the GNU General Public License
 
16
#  along with this program; if not, write to the Free Software
 
17
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA.
 
18
#
 
19
 
 
20
import os
 
21
import sys
 
22
 
 
23
PLAT_PKG = '@PY_PLAT_PKG@'
 
24
SITE_PKG = '@PY_SITE_PKG@'
 
25
 
 
26
AWN_SETTINGS_DIR = os.path.join('@PKGDATADIR@', 'awn-settings')
 
27
sys.path = [AWN_SETTINGS_DIR] + sys.path
 
28
if PLAT_PKG not in sys.path:
 
29
    sys.path = [PLAT_PKG] + sys.path
 
30
if SITE_PKG not in sys.path:
 
31
    sys.path = [SITE_PKG] + sys.path
 
32
 
 
33
from awnSettings import main
 
34
 
 
35
if __name__ == "__main__":
 
36
    main(sys.argv[1:])