Wed Dec 21 15:04:50 2022 UTC ()
omniNotify: touch file to avoid re-generating it

which fails because a tool is missing


(wiz)
diff -r1.6 -r1.7 pkgsrc/net/omniNotify/Makefile

cvs diff -r1.6 -r1.7 pkgsrc/net/omniNotify/Makefile (expand / switch to unified diff)

--- pkgsrc/net/omniNotify/Makefile 2020/03/20 11:58:09 1.6
+++ pkgsrc/net/omniNotify/Makefile 2022/12/21 15:04:50 1.7
@@ -1,25 +1,29 @@ @@ -1,25 +1,29 @@
1# $NetBSD: Makefile,v 1.6 2020/03/20 11:58:09 nia Exp $ 1# $NetBSD: Makefile,v 1.7 2022/12/21 15:04:50 wiz Exp $
2# 2#
3 3
4DISTNAME= omniNotify-2.1 4DISTNAME= omniNotify-2.1
5PKGREVISION= 1 5PKGREVISION= 1
6CATEGORIES= net 6CATEGORIES= net
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=omninotify/} 7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=omninotify/}
8 8
9PATCH_SITES= http://www.NetBSD.org/~dholland/patchkits/omniNotify/ 9PATCH_SITES= http://www.NetBSD.org/~dholland/patchkits/omniNotify/
10PATCHFILES= omniNotify-jumbo-patch-20151224.gz 10PATCHFILES= omniNotify-jumbo-patch-20151224.gz
11PATCH_DIST_STRIP= -p1 11PATCH_DIST_STRIP= -p1
12 12
13MAINTAINER= pkgsrc-users@NetBSD.org 13MAINTAINER= pkgsrc-users@NetBSD.org
14HOMEPAGE= http://omninotify.sourceforge.net/ 14HOMEPAGE= http://omninotify.sourceforge.net/
15COMMENT= CORBA Notification Service 15COMMENT= CORBA Notification Service
16LICENSE= gnu-gpl-v2 16LICENSE= gnu-gpl-v2
17 17
18WRKSRC= ${WRKDIR}/omniNotify 18WRKSRC= ${WRKDIR}/omniNotify
19GNU_CONFIGURE= yes 19GNU_CONFIGURE= yes
20USE_LANGUAGES= c c++ 20USE_LANGUAGES= c c++
21USE_TOOLS+= gmake 21USE_TOOLS+= gmake
22MAKE_FILE= GNUmakefile 22MAKE_FILE= GNUmakefile
23 23
 24post-extract:
 25 # avoid rebuilding file
 26 ${TOUCH} ${WRKSRC}/mkattlib/AttNotificationDynSK.cc
 27
24.include "../../net/omniORB/buildlink3.mk" 28.include "../../net/omniORB/buildlink3.mk"
25.include "../../mk/bsd.pkg.mk" 29.include "../../mk/bsd.pkg.mk"