opnsense-ports/deskutils/virt-manager/files/patch-setup.py
Franco Fichtner a737ce6b05 */*: sync previously available, but unused ports
Taken from: FreeBSD
2015-04-22 06:45:04 +02:00

38 lines
978 B
Python

--- setup.py.orig 2014-09-06 22:26:12 UTC
+++ setup.py
@@ -209,14 +209,6 @@ class my_build(build):
build.run(self)
-class my_egg_info(install_egg_info):
- """
- Disable egg_info installation, seems pointless for a non-library
- """
- def run(self):
- pass
-
-
class my_install(install):
"""
Error if we weren't 'configure'd with the correct install prefix
@@ -601,11 +593,9 @@ setup(
"virt-convert",
"virt-xml",
]),
- ("share/glib-2.0/schemas",
- ["data/org.virt-manager.virt-manager.gschema.xml"]),
("share/virt-manager/ui", glob.glob("ui/*.ui")),
- ("share/man/man1", [
+ ("man/man1", [
"man/virt-manager.1",
"man/virt-install.1",
"man/virt-clone.1",
@@ -627,7 +617,6 @@ setup(
'sdist': my_sdist,
'install': my_install,
- 'install_egg_info': my_egg_info,
'configure': configure,