aboutsummaryrefslogtreecommitdiff
path: root/multimedia/libvpx/Makefile
blob: f9af81618e5567e0369f7d428e0e95390b8f72e4 (plain) (blame)
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
79
80
81
82
83
84
85
86
87
88
89
# New ports collection makefile for:	libvpx
# Date created:		2010-05-21
# Whom:			Ashish SHUKLA <ashish@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	libvpx
PORTVERSION=	0.9.6
CATEGORIES=	multimedia
MASTER_SITES=	GOOGLE_CODE
DISTNAME=	${PORTNAME}-v${PORTVERSION}

MAINTAINER=	ashish@FreeBSD.org
COMMENT=	VP8 Codec SDK

BUILD_DEPENDS=	${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash \
		${LOCALBASE}/bin/yasm:${PORTSDIR}/devel/yasm

USE_BZIP2=	yes
PROJECTHOST=	webm
HAS_CONFIGURE=	yes
USE_GMAKE=	yes
USE_PERL5_BUILD=	yes
USE_LDCONFIG=	yes
MAKE_JOBS_SAFE=yes

LICENSE=	BSD
LICENSE_FILE=	${WRKSRC}/LICENSE

OPTIONS=	DEBUG	"Enable debugging"	OFF \
		POSTPROC	"Enable postprocessing"	ON \
		RUNTIME	"Enable runtime CPU detection"	ON \
		THREADS	"Enable multithread"	ON \
		SHARED	"Enable shared-library support"	ON

ALL_TARGET=
CONFIGURE_ARGS+=	--enable-pic --disable-install-srcs --enable-vp8
MAKE_ARGS+=	DIST_DIR=${PREFIX} verbose=yes

.include <bsd.port.options.mk>

.if defined(WITH_DEBUG)
CONFIGURE_ARGS+=	--enable-debug
.endif

.if defined(WITH_POSTPROC)
CONFIGURE_ARGS+=	--enable-postproc
.endif

.if defined(WITH_RUNTIME)
CONFIGURE_ARGS+=	--enable-runtime-cpu-detect
.endif

.if defined(WITHOUT_THREADS)
CONFIGURE_ARGS+=	--disable-multithread
.endif

.if defined(WITH_SHARED)
CONFIGURE_ARGS+=	--enable-shared
PLIST_SUB+=	SHARED=""
.else
PLIST_SUB+=	SHARED="@comment "
.endif

.include <bsd.port.pre.mk>

.if ${ARCH} == "amd64"
CONFIGURE_ARGS+=	--target=x86_64-linux-gcc
.elif ${ARCH} == "i386"
CONFIGURE_ARGS+=	--target=x86-linux-gcc
.elif ${ARCH} == "ia64"
CONFIGURE_ARGS+=	--target=ia64-linux-gcc
.else
IGNORE=	no support for ${ARCH} the moment. testing/patches are welcome
.endif

post-patch:
	@${GREP} -Rl '^#!/bin/bash' ${WRKSRC} |${XARGS} ${REINPLACE_CMD} \
		-e 's,#!/bin/bash,#!${LOCALBASE}/bin/bash,g'
.if ${OSVERSION} < 700000
	@${GREP} -Rl 'LIBVPX_SO.*extralibs' ${WRKSRC} |${XARGS} ${REINPLACE_CMD} \
		-e 's/\(LIBVPX_SO.*extralibs[[:space:]]*+=[[:space:]]*\)/\1-lc /g'
.else
	@${GREP} -Rl -- '-l\?pthread' ${WRKSRC} |${XARGS} ${REINPLACE_CMD} -E \
		-e 's/-l?pthread/${PTHREAD_LIBS}/g'
.endif

.include <bsd.port.post.mk>