From e17afca8fa4663ef21b661175a1cf6401afe9ef7 Mon Sep 17 00:00:00 2001 From: nork Date: Sun, 2 Feb 2003 14:20:18 +0000 Subject: Conditionalize libgnugetopt dependencies. PR: ports/47745 Submitted by: Ports Fury --- audio/speex-devel/Makefile | 14 ++++++++++---- audio/speex/Makefile | 14 ++++++++++---- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/audio/speex-devel/Makefile b/audio/speex-devel/Makefile index c24e5db1a7a9..4c0dcd41ef3d 100644 --- a/audio/speex-devel/Makefile +++ b/audio/speex-devel/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 ; \ 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 ; \ -- cgit