diff options
Diffstat (limited to 'audio/speex')
-rw-r--r-- | audio/speex/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/audio/speex/Makefile b/audio/speex/Makefile index c24e5db1a7a9..4c0dcd41ef3d 100644 --- a/audio/speex/Makefile +++ b/audio/speex/Makefile @@ -15,19 +15,25 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/beta/} MAINTAINER= ports@FreeBSD.org -LIB_DEPENDS= ogg.4:${PORTSDIR}/audio/libogg \ - gnugetopt.1:${PORTSDIR}/devel/libgnugetopt +LIB_DEPENDS= ogg.4:${PORTSDIR}/audio/libogg USE_REINPLACE= yes USE_LIBTOOL= yes LIBTOOLFLAGS= --disable-ltlibs --release-ignore CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt" +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" INSTALLS_SHLIB= yes MAN1= speexdec.1 speexenc.1 +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +.if !exists(/usr/include/getopt.h) +LIB_DEPENDS+= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt +LDFLAGS+= -lgnugetopt +.endif + post-patch: @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ 's|doc win32|win32|g ; \ |