aboutsummaryrefslogtreecommitdiffstats
path: root/audio/audiere/Makefile
blob: 52f164ba78b9c1e227fb2c369e4b32a6d468e60d (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
# New ports collection makefile for:    audiere
# Date created:     12 Sep 2007
# Whom:         Dmitry Marakasov <amdmi3@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   audiere
PORTVERSION=    1.9.4
PORTREVISION=   4
CATEGORIES= audio
MASTER_SITES=   SF

MAINTAINER= amdmi3@FreeBSD.org
COMMENT=    High-level audio API

GNU_CONFIGURE=  yes
USE_GMAKE=  yes
WANT_WX=    yes
USE_AUTOTOOLS=  autoconf
USE_LDCONFIG=   yes

CONFIGURE_ENV=  PTHREAD_LIBS="${PTHREAD_LIBS}" PTHREAD_CFLAGS="${PTHREAD_CFLAGS}"
CPPFLAGS+=  -I${LOCALBASE}/include/speex -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib

PORTDOCS=   changelog.txt cvs.txt dependencies.txt faq.txt glossary.txt \
        license.txt overview.txt readme.txt release-howto.txt \
        tutorial.txt

CONFIGURE_REPLACES='s|wx_config|no_&|'

OPTIONS=    DUMB    "Enable DUMB support"   on \
        CDAUDIO "Enable libcdaudio support" on \
        VORBIS  "Enable ogg vorbis support" on \
        SPEEX   "Enable speex support"  on
#       FLAC    "Enable FLAC support"   on

.include <bsd.port.pre.mk>

# Broken with recent FLAC
#.if !defined(WITHOUT_FLAC)
#LIB_DEPENDS+=  FLAC:${PORTSDIR}/audio/flac
#.else
CONFIGURE_REPLACES+='/AC_CHECK_LIB/ s|FLAC|no_&|'
#.endif

.if !defined(WITHOUT_DUMB)
BUILD_DEPENDS+= ${LOCALBASE}/lib/libdumb.a:${PORTSDIR}/audio/dumb
.else
CONFIGURE_REPLACES+='/AC_CHECK_LIB/ s|dumb|no_&|'
.endif

.if !defined(WITHOUT_CDAUDIO)
LIB_DEPENDS+=   cdaudio.1:${PORTSDIR}/audio/libcdaudio
.else
CONFIGURE_REPLACES+='/AC_CHECK_LIB/ s|cdaudio|no_&|'
.endif

.if !defined(WITHOUT_VORBIS)
LIB_DEPENDS+=   vorbis.4:${PORTSDIR}/audio/libvorbis \
        ogg:${PORTSDIR}/audio/libogg
.else
CONFIGURE_REPLACES+='/AC_CHECK_HEADER/ s|vorbis|no_&|'
.endif

.if !defined(WITHOUT_SPEEX)
LIB_DEPENDS+=   speex.1:${PORTSDIR}/audio/speex
.else
CONFIGURE_REPLACES+='/AC_CHECK_HEADER/ s|speex|no_&|'
.endif

post-patch:
    @${REINPLACE_CMD} ${CONFIGURE_REPLACES:C/.*/-e &/} \
        -e 's|-lpthread|${PTHREAD_LIBS}|' \
        ${WRKSRC}/configure.in

.if !defined(NOPORTDOCS)
post-install:
    ${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
    ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.post.mk>