1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Respect CFLAGS

- Fix build with clang
- Convert to OptionsNG
- Trim Makefile header

PR:		ports/176766
Submitted by:	myself
Approved by:	Martin Dieringer <martin.dieringer@gmx.de> (maintainer)
This commit is contained in:
Pawel Pekala 2013-03-13 15:31:03 +00:00
parent 7ab655d41e
commit 14232cd5c7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=314091

View File

@ -1,9 +1,5 @@
# New ports collection makefile for: dvda-author
# Date created: 9 October 2007
# Whom: dieringe@zedat.fu-berlin.de
#
# Created by: dieringe@zedat.fu-berlin.de
# $FreeBSD$
#
PORTNAME= dvda-author
PORTVERSION= 09.05
@ -34,8 +30,19 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-flac=${LOCALBASE}/lib/libFLAC.so \
--with-ogg=${LOCALBASE}/lib/libogg.so \
--enable-glibc
.if defined(NOPORTDOCS)
USE_CSTD= gnu89
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MDOCS}
CONFIGURE_ARGS+= --docdir=${WRKDIR}/doc
.endif
post-patch:
@${REINPLACE_CMD} 's|-std=c99||g' \
${WRKSRC}/configure \
${WRKSRC}/libats2wav/Makefile.in
@${REINPLACE_CMD} 's|-std=c99 -O3||' \
${WRKSRC}/fixwav/src/Makefile.in
.include <bsd.port.mk>