Sat Jan 7 00:50:33 2023 UTC ()
devel/got-portable: GNU bison required on Linux and macOS.


(vins)
diff -r1.2 -r1.3 pkgsrc/devel/got-portable/Makefile

cvs diff -r1.2 -r1.3 pkgsrc/devel/got-portable/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/got-portable/Makefile 2022/12/20 08:58:20 1.2
+++ pkgsrc/devel/got-portable/Makefile 2023/01/07 00:50:33 1.3
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.2 2022/12/20 08:58:20 vins Exp $ 1# $NetBSD: Makefile,v 1.3 2023/01/07 00:50:33 vins Exp $
2 2
3DISTNAME= got-portable-0.79 3DISTNAME= got-portable-0.79
4CATEGORIES= devel 4CATEGORIES= devel
5MASTER_SITES= https://gameoftrees.org/releases/portable/ 5MASTER_SITES= https://gameoftrees.org/releases/portable/
6 6
7MAINTAINER= vins@NetBSD.org 7MAINTAINER= vins@NetBSD.org
8HOMEPAGE= https://gameoftrees.org/portable.html 8HOMEPAGE= https://gameoftrees.org/portable.html
9COMMENT= Game of Trees version control system manipulating Git repo 9COMMENT= Game of Trees version control system manipulating Git repo
10LICENSE= isc 10LICENSE= isc
11 11
12CONFLICTS+= got-[0-9]* 12CONFLICTS+= got-[0-9]*
13 13
14ONLY_FOR_PLATFORM+= NetBSD-*-* 14ONLY_FOR_PLATFORM+= NetBSD-*-*
@@ -16,32 +16,33 @@ ONLY_FOR_PLATFORM+= Darwin-*-* @@ -16,32 +16,33 @@ ONLY_FOR_PLATFORM+= Darwin-*-*
16ONLY_FOR_PLATFORM+= Linux-*-* 16ONLY_FOR_PLATFORM+= Linux-*-*
17ONLY_FOR_PLATFORM+= FreeBSD-*-* 17ONLY_FOR_PLATFORM+= FreeBSD-*-*
18ONLY_FOR_PLATFORM+= DragonFly-*-* 18ONLY_FOR_PLATFORM+= DragonFly-*-*
19 19
20USE_TOOLS+= yacc pkg-config 20USE_TOOLS+= yacc pkg-config
21GNU_CONFIGURE= yes 21GNU_CONFIGURE= yes
22 22
23INSTALLATION_DIRS= bin libexec 23INSTALLATION_DIRS= bin libexec
24INSTALLATION_DIRS+= ${PKGMANDIR}/man1 ${PKGMANDIR}/man5 24INSTALLATION_DIRS+= ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
25 25
26.include "../../mk/bsd.prefs.mk" 26.include "../../mk/bsd.prefs.mk"
27 27
28.if ${OPSYS} == "Linux" 28.if ${OPSYS} == "Linux"
 29USE_TOOLS+= bison
29# compatibility macros and functions for Linux. 30# compatibility macros and functions for Linux.
30. include "../../devel/libbsd/buildlink3.mk" 31. include "../../devel/libbsd/buildlink3.mk"
31.endif 32.endif
32 33
33.if ${OPSYS} == "Darwin" 34.if ${OPSYS} == "Darwin"
34CONFIGURE_ENV+= HB_PREFIX=${PREFIX} 35USE_TOOLS+= bison
35# define uuid library to use 36# define uuid library to use
36. include "../../devel/ossp-uuid/buildlink3.mk" 37. include "../../devel/ossp-uuid/buildlink3.mk"
37.else 38.else
38. include "../../devel/libuuid/buildlink3.mk" 39. include "../../devel/libuuid/buildlink3.mk"
39.endif 40.endif
40 41
41# need libcrypto.so.1.1 42# need libcrypto.so.1.1
42BUILDLINK_API_DEPENDS.openssl+= openssl>=1.1.1d 43BUILDLINK_API_DEPENDS.openssl+= openssl>=1.1.1d
43.include "../../security/openssl/buildlink3.mk" 44.include "../../security/openssl/buildlink3.mk"
44 45
45# required for set_panel_userptr(3) and waddwstr(3). 46# required for set_panel_userptr(3) and waddwstr(3).
46.include "../../devel/ncursesw/buildlink3.mk" 47.include "../../devel/ncursesw/buildlink3.mk"
47 48