summaryrefslogtreecommitdiff
path: root/audio/flac/Makefile
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@FreeBSD.org>2002-07-06 23:45:21 +0000
committerChristian Weisgerber <naddy@FreeBSD.org>2002-07-06 23:45:21 +0000
commit5c356975f424775ad28a761ff93618b8f84298ec (patch)
treeb948a908c41c1649fd108b64333499e677c0c092 /audio/flac/Makefile
parentAdd mplayer-fonts 1.0, (diff)
Update to 1.0.3. Changes in this release:
- 10-15% decoder speedup - 24-bit input support restored - more robust plugins - new metadata block for Vorbis-style tags - vastly improved metadata editor - fixed bug with pipes and Windows - new libFLAC++, a C++ object wrapper around libFLAC - new metadata editing interface in libFLAC and libFLAC++ - and more...
Notes
Notes: svn path=/head/; revision=62537
Diffstat (limited to 'audio/flac/Makefile')
-rw-r--r--audio/flac/Makefile28
1 files changed, 9 insertions, 19 deletions
diff --git a/audio/flac/Makefile b/audio/flac/Makefile
index 621a1bc2fac8..9c71ba51a832 100644
--- a/audio/flac/Makefile
+++ b/audio/flac/Makefile
@@ -6,11 +6,10 @@
#
PORTNAME= flac
-PORTVERSION= 1.0.2
+PORTVERSION= 1.0.3
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
-DISTNAME= ${PORTNAME}-${PORTVERSION}-src
MAINTAINER= naddy@FreeBSD.org
@@ -27,30 +26,21 @@ PLIST_SUB= XMMS="@comment "
.if ${MACHINE_ARCH} == "i386"
BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm
-CONFIGURE_ARGS+= --enable-sse --enable-3dnow
.endif
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
-CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
-MAKE_ENV= INCLUDES="-I${WRKSRC}/include"
+CONFIGURE_ARGS= --with-ogg=${LOCALBASE} \
+ --enable-sse --enable-3dnow
+CONFIGURE_ENV= CONFIG_SHELL=${SH}
-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
+.if defined(NOPORTDOCS)
+MAKE_ENV= DOC=""
+.else
+MAKE_ENV= DOC=doc
+.endif
INSTALLS_SHLIB= yes
MAN1= flac.1
-pre-build:
- @${RM} -r ${WRKSRC}/obj
-
-post-install:
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${PREFIX}/share/doc/flac
- cd ${WRKSRC}/doc; ${INSTALL_DATA} *.html ${PREFIX}/share/doc/flac
- ${MKDIR} ${PREFIX}/share/doc/flac/images
- cd ${WRKSRC}/doc/images; \
- ${INSTALL_DATA} *.gif *.jpg ${PREFIX}/share/doc/flac/images
-.endif
-
.include <bsd.port.mk>