diff --git a/deskutils/virt-manager/Makefile b/deskutils/virt-manager/Makefile index 74fa19fbd1ac..91129aa03bc0 100644 --- a/deskutils/virt-manager/Makefile +++ b/deskutils/virt-manager/Makefile @@ -1,52 +1,52 @@ PORTNAME= virt-manager PORTVERSION= 4.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils net-mgmt MASTER_SITES= https://virt-manager.org/download/sources/${PORTNAME}/ MAINTAINER= novel@FreeBSD.org COMMENT= Toolkit to interact with virtualization capabilities WWW= https://virt-manager.org/ LICENSE= LGPL3 LIB_DEPENDS= libvirt.so:devel/libvirt BUILD_DEPENDS= rst2man:textproc/py-docutils@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.83.2:devel/py-dbus@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}libxml2>=2.7.8:textproc/py-libxml2@${PY_FLAVOR} \ vte3>=0:x11-toolkits/vte3 \ ${PYTHON_PKGNAMEPREFIX}ipaddr>=0:devel/py-ipaddr@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}libvirt>=0:devel/py-libvirt@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ gtk-vnc>=0.4.4:net/gtk-vnc \ libvirt-glib>=0.1.9:devel/libvirt-glib \ libosinfo>=0:devel/libosinfo \ spice-gtk>=0.26:deskutils/spice-gtk \ ssh-askpass:security/openssh-askpass PYDISTUTILS_INSTALLNOSINGLE= yes PYDISTUTILS_CONFIGURE_TARGET= configure PYDISTUTILS_CONFIGUREARGS= --prefix=${PREFIX} USES= python gettext gnome shebangfix USE_PYTHON= noegginfo autoplist distutils noflavors NO_ARCH= yes USE_GNOME= gtksourceview4 introspection:run intltool librsvg2 pygobject3 SHEBANG_FILES= virt-manager \ virt-install \ virt-clone \ virt-xml \ virtManager/virtmanager.py GLIB_SCHEMAS= org.virt-manager.virt-manager.gschema.xml #add workaround for two autoplist functions post-install: @${MKDIR} ${STAGEDIR}/${PREFIX}/share/glib-2.0/schemas/ .for file in ${GLIB_SCHEMAS} ${INSTALL_DATA} ${WRKSRC}/data/${file} ${STAGEDIR}/${PREFIX}/share/glib-2.0/schemas .endfor .include diff --git a/deskutils/virt-manager/files/patch-setup.py b/deskutils/virt-manager/files/patch-setup.py index 3f2a86682ea2..36503001410c 100644 --- a/deskutils/virt-manager/files/patch-setup.py +++ b/deskutils/virt-manager/files/patch-setup.py @@ -1,34 +1,30 @@ ---- setup.py.orig 2022-02-12 16:13:59 UTC +--- setup.py.orig 2022-08-04 19:07:49 UTC +++ setup.py @@ -427,8 +427,8 @@ class VMMDistribution(setuptools.dist.Distribution): ] def __init__(self, *args, **kwargs): - self.no_update_icon_cache = False - self.no_compile_schemas = False + self.no_update_icon_cache = True + self.no_compile_schemas = True setuptools.dist.Distribution.__init__(self, *args, **kwargs) -@@ -500,11 +500,9 @@ setuptools.setup( +@@ -500,8 +500,6 @@ setuptools.setup( "build/virt-xml"]), data_files=[ - ("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", -@@ -535,7 +533,6 @@ setuptools.setup( + ("share/man/man1", [ +@@ -538,7 +536,6 @@ setuptools.setup( 'build_i18n': my_build_i18n, 'install': my_install, - 'install_egg_info': my_egg_info, 'configure': configure,