blob: 2b5376606ba014899ecb8fd2f6a265c4a093e6ad (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# $NetBSD: Makefile,v 1.19 2012/12/23 10:33:33 ryoon Exp $
DISTNAME= libvpx-v1.1.0
PKGNAME= ${DISTNAME:S/-v/-/}
PKGREVISION= 2
CATEGORIES= multimedia
MASTER_SITES= http://webm.googlecode.com/files/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://code.google.com/p/webm/
COMMENT= On2 VP8 library from Google
LICENSE= modified-bsd
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= gmake bash:build perl:build
HAS_CONFIGURE= yes
CONFIG_SHELL= ${BASH}
CONFIGURE_ARGS+= --disable-postproc
CONFIGURE_ARGS+= --enable-pic
CONFIGURE_ARGS+= --enable-runtime-cpu-detect
CONFIGURE_ARGS+= --prefix=${PREFIX}
.include "../../mk/bsd.prefs.mk"
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
BUILD_DEPENDS+= yasm-[0-9]*:../../devel/yasm
.endif
REPLACE_BASH= configure \
build/make/configure.sh \
build/make/version.sh \
build/make/gen_asm_deps.sh \
build/make/rtcd.sh \
examples/gen_example_text.sh \
examples/gen_example_code.sh
.if ${OPSYS} == "Darwin"
BUILDLINK_TRANSFORM+= rm:-Wl,-Bsymbolic
. if ${MACHINE_ARCH} == "i386"
. if !empty(OS_VERSION:M12.*)
CONFIGURE_ARGS+= --target=x86-darwin12-gcc
. elif !empty(OS_VERSION:M11.*)
CONFIGURE_ARGS+= --target=x86-darwin11-gcc
. elif !empty(OS_VERSION:M10.*)
CONFIGURE_ARGS+= --target=x86-darwin10-gcc
. elif !empty(OS_VERSION:M9.*)
CONFIGURE_ARGS+= --target=x86-darwin9-gcc
. else
CONFIGURE_ARGS+= --target=x86-darwin8-gcc
. endif
. elif ${MACHINE_ARCH} == "x86_64"
. if !empty(OS_VERSION:M12.*)
CONFIGURE_ARGS+= --target=x86_64-darwin12-gcc
. elif !empty(OS_VERSION:M11.*)
CONFIGURE_ARGS+= --target=x86_64-darwin11-gcc
. elif !empty(OS_VERSION:M10.*)
CONFIGURE_ARGS+= --target=x86_64-darwin10-gcc
. elif !empty(OS_VERSION:M9.*)
CONFIGURE_ARGS+= --target=x86_64-darwin9-gcc
. else
CONFIGURE_ARGS+= --target=x86_64-darwin8-gcc
. endif
. endif
.endif
.if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH}
CONFIGURE_ARGS+= --target=mips32-linux-gcc
.endif
BUILD_TARGET= # none
post-extract:
${CP} ${FILESDIR}/strip_fPIC.sh ${WRKSRC}
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|