Luigi Baldoni
4966b5ed3f
update to 3.0.5 OBS-URL: https://build.opensuse.org/request/show/767985 OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/xpra?expand=0&rev=33
46 lines
2.3 KiB
Diff
46 lines
2.3 KiB
Diff
Index: xpra-3.0.5/setup.py
|
|
===================================================================
|
|
--- xpra-3.0.5.orig/setup.py
|
|
+++ xpra-3.0.5/setup.py
|
|
@@ -1502,7 +1502,7 @@ else:
|
|
add_data_files("%s/man1" % man_path, ["man/xpra.1", "man/xpra_launcher.1"])
|
|
add_data_files("share/applications", glob.glob("xdg/*.desktop"))
|
|
add_data_files("share/mime/packages", ["xdg/application-x-xpraconfig.xml"])
|
|
- add_data_files("share/icons", ["xdg/xpra.png", "xdg/xpra-mdns.png", "xdg/xpra-shadow.png"])
|
|
+ add_data_files("share/pixmaps", ["xdg/xpra.png", "xdg/xpra-mdns.png", "xdg/xpra-shadow.png"])
|
|
add_data_files("share/appdata", ["xdg/xpra.appdata.xml"])
|
|
|
|
#here, we override build and install so we can
|
|
@@ -1575,10 +1575,10 @@ else:
|
|
if pam_ENABLED:
|
|
copytodir("etc/pam.d/xpra", "/etc/pam.d")
|
|
|
|
- systemd_dir = "/lib/systemd/system"
|
|
+ systemd_dir = "__UNITDIR__"
|
|
if service_ENABLED:
|
|
#Linux init service:
|
|
- if os.path.exists("/bin/systemctl"):
|
|
+ if os.path.exists("/usr/bin/systemctl"):
|
|
if sd_listen_ENABLED:
|
|
copytodir("service/xpra.service", systemd_dir)
|
|
else:
|
|
@@ -1586,7 +1586,9 @@ else:
|
|
else:
|
|
copytodir("service/xpra", "/etc/init.d")
|
|
if os.path.exists("/etc/sysconfig"):
|
|
- copytodir("etc/sysconfig/xpra", "/etc/sysconfig")
|
|
+ shutil.copy("etc/sysconfig/xpra", "etc/sysconfig/sysconfig.xpra")
|
|
+ os.chmod("etc/sysconfig/sysconfig.xpra", 0o644)
|
|
+ copytodir("etc/sysconfig/sysconfig.xpra", "__FILLUPDIR__")
|
|
elif os.path.exists("/etc/default"):
|
|
copytodir("etc/sysconfig/xpra", "/etc/default")
|
|
if sd_listen_ENABLED:
|
|
@@ -1704,7 +1706,6 @@ if scripts_ENABLED:
|
|
toggle_modules(WIN32, "xpra/scripts/win32_proxy_service")
|
|
|
|
if data_ENABLED:
|
|
- add_data_files(share_xpra, ["README", "COPYING"])
|
|
add_data_files(share_xpra, ["bell.wav"])
|
|
add_data_files("%s/http-headers" % share_xpra, glob.glob("http-headers/*"))
|
|
add_data_files("%s/icons" % share_xpra, glob.glob("icons/*png"))
|