blob: 6493f5ac49bb3367dcf3f1babba422fdf099c774 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# $NetBSD: Makefile,v 1.49 2022/11/23 16:18:54 adam Exp $
#
.include "Makefile.common"
PKGREVISION= 22
#CONFIGURE_ARGS+= --disable-silent-rules
COMMENT+= Base plugins
# some plugins were moved from bad to base
CONFLICTS+= gst-plugins0.10-bad<0.10.10
USE_TOOLS+= perl:run autoconf automake gmake
USE_TOOLS+= autoreconf autopoint
TOOL_DEPENDS+= gtk-doc-[0-9]*:../../textproc/gtk-doc
MAKE_JOBS_SAFE= no
PKGCONFIG_OVERRIDE+= pkgconfig/*.pc.in
REPLACE_PERL+= tools/gst-visualise-m.m
PKG_OPTIONS_VAR= PKG_OPTIONS.gst-plugins0.10-base
PKG_SUPPORTED_OPTIONS= introspection
PKG_SUGGESTED_OPTIONS= introspection
.include "../../mk/bsd.options.mk"
PLIST_VARS+= introspection
# only useful if gstreamer was built with the "gstcheck" option
TEST_TARGET= check-torture
# soft dependency only, .pc file not needed
#.include "../../textproc/iso-codes/buildlink3.mk"
.if !empty(PKG_OPTIONS:Mintrospection)
PLIST.introspection= yes
.include "../../devel/gobject-introspection/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-introspection
.endif
pre-configure:
cd ${WRKSRC} && autoreconf -fiv
.include "../../mk/bsd.pkg.mk"
|