aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/gavl/Makefile
blob: 6a3cda525f7073631011c6062c6186c28348704b (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
# New ports collection makefile for:    gavl
# Date created:     2004-08-29
# Whom:         Michael Johnson <ahze@ahze.net>
#
# $FreeBSD$
#

PORTNAME=   gavl
PORTVERSION=    1.1.1
PORTREVISION=   1
CATEGORIES= multimedia
MASTER_SITES=   SF/gmerlin/${PORTNAME}/${PORTVERSION}

MAINTAINER= mm@FreeBSD.org
COMMENT=    A library for handling uncompressed video and audio data

LIB_DEPENDS=    png.6:${PORTSDIR}/graphics/png \
        samplerate.1:${PORTSDIR}/audio/libsamplerate

USE_GNOME=  pkgconfig gnometarget gnomehack
USE_LDCONFIG=   yes
MAKE_JOBS_SAFE= yes
GNU_CONFIGURE=  yes
CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include" \
        LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --without-cpuflags --without-doxygen

PORTDOCS=   README

OPTIONS=    OPTIMIZED_CFLAGS "Additional optimizations" off

.include <bsd.port.pre.mk>

.if defined(WITH_OPTIMIZED_CFLAGS) && ${ARCH} == i386 && ${OSVERSION} < 700000
# Build fails on FreeBSD-6.3 i386 with optimized cflags with gcc 3.4
USE_GCC=    4.2+
.endif

post-patch:
    # This is possibly wrong, but benchmark does not affect library functionality, so
    @${REINPLACE_CMD} -e 's|CLOCK_PROCESS_CPUTIME_ID|CLOCK_PROF|g' \
        ${WRKSRC}/src/benchmark.c
.if !defined(WITH_OPTIMIZED_CFLAGS)
    @${REINPLACE_CMD} -e \
    's|-O3 -funroll-all-loops -fomit-frame-pointer -ffast-math||g' \
        ${WRKSRC}/configure
.endif

post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif

.include <bsd.port.post.mk>