1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
#!/usr/bin/env python
import sys, os, glob
import subprocess
from stat import *
from distutils.core import setup
from distutils.command.install import install as _install
from distutils.command.install_data import install_data as _install_data
INSTALLED_FILES = "installed_files"
class install (_install):
def run (self):
_install.run (self)
outputs = self.get_outputs ()
length = 0
if self.root:
length += len (self.root)
if self.prefix:
length += len (self.prefix)
if length:
for counter in xrange (len (outputs)):
outputs[counter] = outputs[counter][length:]
data = "\n".join (outputs)
try:
file = open (INSTALLED_FILES, "w")
except:
self.warn ("Could not write installed files list %s" % \
INSTALLED_FILES)
return
file.write (data)
file.close ()
class install_data (_install_data):
def run (self):
def chmod_data_file (file):
try:
os.chmod (file, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
except:
self.warn ("Could not chmod data file %s" % file)
_install_data.run (self)
map (chmod_data_file, self.get_outputs ())
class uninstall (_install):
def run (self):
try:
file = open (INSTALLED_FILES, "r")
except:
self.warn ("Could not read installed files list %s" % \
INSTALLED_FILES)
return
files = file.readlines ()
file.close ()
prepend = ""
if self.root:
prepend += self.root
if self.prefix:
prepend += self.prefix
if len (prepend):
for counter in xrange (len (files)):
files[counter] = prepend + files[counter].rstrip ()
for file in files:
print "Uninstalling %s" % file
try:
os.unlink (file)
except:
self.warn ("Could not remove file %s" % file)
ops = ("install", "build", "sdist", "uninstall", "clean")
if len (sys.argv) < 2 or sys.argv[1] not in ops:
print "Please specify operation : %s" % " | ".join (ops)
raise SystemExit
prefix = None
if len (sys.argv) > 2:
i = 0
for o in sys.argv:
if o.startswith ("--prefix"):
if o == "--prefix":
if len (sys.argv) >= i:
prefix = sys.argv[i + 1]
sys.argv.remove (prefix)
elif o.startswith ("--prefix=") and len (o[9:]):
prefix = o[9:]
sys.argv.remove (o)
break
i += 1
if not prefix and "PREFIX" in os.environ:
prefix = os.environ["PREFIX"]
if not prefix or not len (prefix):
prefix = "/usr/local"
if sys.argv[1] in ("install", "uninstall") and len (prefix):
sys.argv += ["--prefix", prefix]
version_file = open ("VERSION", "r")
version = version_file.read ().strip ()
if "=" in version:
version = version.split ("=")[1]
f = open (os.path.join ("ccm/Constants.py.in"), "rt")
data = f.read ()
f.close ()
data = data.replace ("@prefix@", prefix)
data = data.replace ("@version@", version)
f = open (os.path.join ("ccm/Constants.py"), "wt")
f.write (data)
f.close ()
cmd = "intltool-merge -d -u po/ ccsm.desktop.in ccsm.desktop".split(" ")
proc = subprocess.Popen(cmd)
proc.wait()
custom_images = []
data_files = [
("share/applications", ["ccsm.desktop"]),
]
global_icon_path = "share/icons/hicolor/"
local_icon_path = "share/ccsm/icons/hicolor/"
for dir, subdirs, files in os.walk("images/"):
if dir == "images/":
for file in files:
custom_images.append(dir + file)
else:
images = []
global_images = []
for file in files:
if file.find(".svg") or file.find(".png"):
file_path = "%s/%s" % (dir, file)
# global image
if file[:-4] == "ccsm":
global_images.append(file_path)
# local image
else:
images.append(file_path)
# local
if len(images) > 0:
data_files.append((local_icon_path + dir[7:], images))
# global
if len(global_images) > 0:
data_files.append((global_icon_path + dir[7:], global_images))
data_files.append(("share/ccsm/images", custom_images))
podir = os.path.join (os.path.realpath ("."), "po")
if os.path.isdir (podir):
buildcmd = "msgfmt -o build/locale/%s/ccsm.mo po/%s.po"
mopath = "build/locale/%s/ccsm.mo"
destpath = "share/locale/%s/LC_MESSAGES"
for name in os.listdir (podir):
if name[-2:] == "po":
name = name[:-3]
if sys.argv[1] == "build" \
or (sys.argv[1] == "install" and \
not os.path.exists (mopath % name)):
if not os.path.isdir ("build/locale/" + name):
os.makedirs ("build/locale/" + name)
os.system (buildcmd % (name, name))
data_files.append ((destpath % name, [mopath % name]))
setup (
name = "ccsm",
version = version,
description = "CompizConfig Settings Manager",
author = "Patrick Niklaus",
author_email = "marex@opencompositing.org",
url = "http://opencompositing.org/",
license = "GPL",
data_files = data_files,
packages = ["ccm"],
scripts = ["ccsm"],
cmdclass = {"uninstall" : uninstall,
"install" : install,
"install_data" : install_data}
)
os.remove ("ccm/Constants.py")
if sys.argv[1] == "install":
gtk_update_icon_cache = '''gtk-update-icon-cache -f -t \
%s/share/ccsm/icons/hicolor''' % prefix
root_specified = len (filter (lambda s: s.startswith ("--root"),
sys.argv)) > 0
if not root_specified:
print "Updating Gtk icon cache."
os.system (gtk_update_icon_cache)
else:
print '''*** Icon cache not updated. After install, run this:
*** %s''' % gtk_update_icon_cache
|