a628b57004
Originally the upstream package didn't supply an xfce4-notifyd.desktop file, so we added one locally. Now it does provide this file, so use it instead. Committed in part to try to fix a packaging failure noted in Joyent SunOS builds. I wasn't able to duplicate it, but this should avoid the problem by preventing the upstream tooling from trying to install directly to a path under PKG_SYSCONFDIR (which usually in this example check-files.mk ignores, and we'd specified the same file name and path to install our local version of the config file to).
27 lines
935 B
Makefile
27 lines
935 B
Makefile
# $NetBSD: Makefile,v 1.30 2020/12/22 00:28:13 gutteridge Exp $
|
|
|
|
.include "../../meta-pkgs/xfce4/Makefile.common"
|
|
|
|
VERSION= 0.6.2
|
|
DISTNAME= xfce4-notifyd-${VERSION}
|
|
PKGREVISION= 1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= https://archive.xfce.org/src/apps/xfce4-notifyd/${VERSION:R}/
|
|
|
|
HOMEPAGE= https://goodies.xfce.org/projects/applications/xfce4-notifyd
|
|
COMMENT= Xfce Notify daemon
|
|
|
|
TOOL_DEPENDS+= gdbus-codegen-[0-9]*:../../devel/gdbus-codegen
|
|
|
|
DESKTOP_FILE= xfce4-notifyd.desktop
|
|
EGDIR= share/examples/xfce4-notifyd
|
|
MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg/autostart
|
|
CONF_FILES+= ${EGDIR}/${DESKTOP_FILE} \
|
|
${PKG_SYSCONFDIR}/xdg/autostart/${DESKTOP_FILE}
|
|
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../x11/libxfce4ui/buildlink3.mk"
|
|
.include "../../x11/xfce4-panel/buildlink3.mk"
|
|
.include "../../sysutils/libnotify/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|