blob: 772f1979d5617e0e9e29c37a164415aef2597393 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $NetBSD: options.mk,v 1.15 2012/04/14 15:43:10 jmmv Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.glib2
PKG_SUPPORTED_OPTIONS= kqueue
PKG_SUGGESTED_OPTIONS= # empty
# We really should be doing this by default. However, the kqueue patch is not
# official, needs some more testing and, due to the way it is written, forces
# us to run autoconf. If the code gets integrated upstream, there is no reason
# for us to provide a 'kqueue' option here and it should just go away.
#
#.if exists(/usr/include/sys/event.h)
#PKG_SUGGESTED_OPTIONS+= kqueue
#.endif
.include "../../mk/bsd.prefs.mk"
.include "../../mk/bsd.options.mk"
.if $(PKG_OPTIONS:Mkqueue)
PATCH_SITES= http://dmitrymatveev.co.uk/files/
PATCHFILES= glib-gio-kqueue-2.30.3-v4.1.patch
PATCH_DIST_STRIP= -p0
BUILD_DEPENDS+= gtk-doc-[0-9]*:../../textproc/gtk-doc
USE_TOOLS+= autoconf autoheader automake
pre-configure: regen-autotools
regen-autotools:
cd ${WRKSRC} && aclocal
cd ${WRKSRC} && automake
cd ${WRKSRC} && autoheader
cd ${WRKSRC} && autoconf
.endif
|