diff options
author | nork <nork@FreeBSD.org> | 2003-02-01 17:04:16 +0000 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-02-01 17:04:16 +0000 |
commit | f1ed1004b685fbdce7d3fa2cd3221c91c9ac879f (patch) | |
tree | acf4b5183c83e8d2f19fcc45dfb60c2f420f6e94 /audio/cdparanoia | |
parent | 0abecfd5bcdfa946ee91c7be04413c68a6635f0d (diff) | |
download | FreeBSD-ports-f1ed1004b685fbdce7d3fa2cd3221c91c9ac879f.zip FreeBSD-ports-f1ed1004b685fbdce7d3fa2cd3221c91c9ac879f.tar.gz |
Fix build on -CURRENT.
PR: ports/47696
Pointed out by: Jonas Engman
Submitted by: Simon Schubert <corecode@corecode.ath.cx> (maintainer)
Diffstat (limited to 'audio/cdparanoia')
-rw-r--r-- | audio/cdparanoia/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/audio/cdparanoia/Makefile b/audio/cdparanoia/Makefile index 0da645c..3b6899b 100644 --- a/audio/cdparanoia/Makefile +++ b/audio/cdparanoia/Makefile @@ -7,7 +7,7 @@ PORTNAME= cdparanoia PORTVERSION= 3.9.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio sysutils MASTER_SITES= http://www.xiph.org/paranoia/download/ DISTNAME= ${PORTNAME}-${PORTVERSION:C/^3\./III-alpha/} @@ -15,19 +15,20 @@ EXTRACT_SUFX= .src.tgz MAINTAINER= corecode@corecode.ath.cx +.if !exists(/usr/include/getopt.h) CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt" - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500041 + LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -lgnugetopt" LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt .endif INSTALLS_SHLIB= yes GNU_CONFIGURE= yes USE_GMAKE= yes +USE_REINPLACE= yes MAN1= cdparanoia.1 -.include <bsd.port.post.mk> +post-patch: + @${REINPLACE_CMD} -e 's/\(^ *default:\)/\1break;/' ${WRKSRC}/interface/utils.h + +.include <bsd.port.mk> |