diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-02-02 14:20:18 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-02-02 14:20:18 +0000 |
commit | 05d59c2369a0202666c513c2267c308f716b3e93 (patch) | |
tree | 7c90afffb5075a48b8c207cc0b18e67905deca80 /audio/speex/Makefile | |
parent | Conditionalize libgnugetopt dependencies. (diff) |
Conditionalize libgnugetopt dependencies.
PR: ports/47745
Submitted by: Ports Fury
Diffstat (limited to '')
-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 ; \ |