diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-07-20 17:35:36 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-07-20 17:35:36 +0000 |
commit | ffee1a3ffd0c74a3da0be17d57a3bb6e9b1223ae (patch) | |
tree | 28413d308252eb756b8dec0602f30c4769f1bd7b /audio/mpg321 | |
parent | 22ca5fe36eba7415e8e61aaf2a36025a374142aa (diff) | |
download | FreeBSD-ports-ffee1a3ffd0c74a3da0be17d57a3bb6e9b1223ae.zip FreeBSD-ports-ffee1a3ffd0c74a3da0be17d57a3bb6e9b1223ae.tar.gz |
no longer use SDL & smpeg
handle pthread more properly
Submitted by: Alexander Leidinger <Alexander@leidinger.net>
Diffstat (limited to 'audio/mpg321')
-rw-r--r-- | audio/mpg321/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/audio/mpg321/Makefile b/audio/mpg321/Makefile index 800fb5c..515136f 100644 --- a/audio/mpg321/Makefile +++ b/audio/mpg321/Makefile @@ -15,17 +15,13 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ports@FreeBSD.org -LIB_DEPENDS= smpeg.1:${PORTSDIR}/graphics/smpeg \ - ao.1:${PORTSDIR}/audio/libao \ - SDL-1.1.3:${PORTSDIR}/devel/sdl12 \ +LIB_DEPENDS= ao.1:${PORTSDIR}/audio/libao \ gnugetopt.1:${PORTSDIR}/devel/libgnugetopt BUILD_DEPENDS= ${LOCALBASE}/lib/libmad.a:${PORTSDIR}/audio/mad -SDL_CONFIG= ${LOCALBASE}/bin/sdl11-config GNU_CONFIGURE= yes -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -lc_r -lgnugetopt" \ - CFLAGS="-I${LOCALBASE}/include" \ - SDL_CONFIG="${SDL_CONFIG}" +CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS} -lgnugetopt" \ + CFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" USE_GMAKE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} |