diff options
Diffstat (limited to 'x11/xapp/Makefile')
-rw-r--r-- | x11/xapp/Makefile | 41 |
1 files changed, 32 insertions, 9 deletions
diff --git a/x11/xapp/Makefile b/x11/xapp/Makefile index cea1e537bb49..b0a81033e525 100644 --- a/x11/xapp/Makefile +++ b/x11/xapp/Makefile @@ -1,5 +1,5 @@ PORTNAME= xapp -PORTVERSION= 2.8.2 +DISTVERSION= 2.8.9 PORTREVISION= 1 CATEGORIES= x11 gnome DIST_SUBDIR= gnome @@ -14,25 +14,48 @@ LICENSE_FILE?= ${WRKSRC}/COPYING.LESSER LIB_DEPENDS= libdbusmenu-gtk3.so:devel/libdbusmenu RUN_DEPENDS= bash:shells/bash -USES= gettext-tools gnome meson pkgconfig python shebangfix vala:build xorg +USES= gettext-tools gnome meson pkgconfig python shebangfix xorg USE_GITHUB= yes GH_ACCOUNT= linuxmint -USE_GNOME= cairo gdkpixbuf glib20 gtk-update-icon-cache gtk30 \ - intltool introspection:build libgnomekbd pygobject3 +USE_GNOME= cairo gdkpixbuf glib20 gtk30 libgnomekbd USE_LDCONFIG= yes USE_XORG= x11 GLIB_SCHEMAS= org.x.apps.gschema.xml -SHEBANG_FILES= data libxapp meson-scripts schemas scripts status-applets \ - test-scripts +SHEBANG_FILES= data schemas scripts status-applets test-scripts PLIST_SUB+= LIBVERSION=${PORTVERSION} PORTSCOUT= limit:^[0-9.]+$$ # ignore master.mint* tags -OPTIONS_DEFINE= DOCS -OPTIONS_SUB= yes +BINARY_ALIAS= python3=${PYTHON_CMD} + +OPTIONS_DEFINE= DOCS INTROSPECTION MATE STATUS VAPI XFCE +OPTIONS_DEFAULT= INTROSPECTION MATE STATUS VAPI XFCE +OPTIONS_SUB= yes DOCS_BUILD_DEPENDS= gtkdoc-scan:textproc/gtk-doc -DOCS_MESON_ON= -Ddocs=true +DOCS_MESON_TRUE= docs + +INTROSPECTION_DESC= Enable GObject introspection +INTROSPECTION_MESON_TRUE= introspection +INTROSPECTION_USE= GNOME=pygobject3,introspection:build + +MATE_DESC= Install mate specific items +MATE_MESON_TRUE= mate + +STATUS_DESC= Build the XApp StatusNotifier service +STATUS_MESON_TRUE= status-notifier + +VAPI_DESC= Enable Vala bindings +VAPI_MESON_TRUE= vapi +VAPI_USES= vala:build +VAPI_IMPLIES= INTROSPECTION + +XFCE_DESC= Install xfce specific items +XFCE_MESON_TRUE= xfce + +post-patch: + ${REINPLACE_CMD} -e 's|/usr/bin|${PREFIX}/bin|g' \ + ${WRKSRC}/scripts/upload-system-info .include <bsd.port.mk> |