diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-03 06:18:48 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-03 06:18:48 +0000 |
commit | 292b563b176eb6387132196c50c5cc1c245c3048 (patch) | |
tree | 5eee6af13c02b18ce1086b0a2d90fcaaa2bbaac6 /audio/flac | |
parent | 1. Add support to the xmame port for building the GL version. Yet more (diff) |
upgrade to 0.9
only for i386
Submitted by: Christian Weisgerber <naddy@mips.inka.de> (for "i386 only")
Notes
Notes:
svn path=/head/; revision=40790
Diffstat (limited to 'audio/flac')
-rw-r--r-- | audio/flac/Makefile | 10 | ||||
-rw-r--r-- | audio/flac/distinfo | 2 | ||||
-rw-r--r-- | audio/flac/files/patch-configure.in | 16 |
3 files changed, 13 insertions, 15 deletions
diff --git a/audio/flac/Makefile b/audio/flac/Makefile index 16d547f4bece..a9a2dd879134 100644 --- a/audio/flac/Makefile +++ b/audio/flac/Makefile @@ -7,7 +7,7 @@ # PORTNAME= flac -PORTVERSION= 0.8 +PORTVERSION= 0.9 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -20,6 +20,8 @@ BUILD_DEPENDS+= xmms-config:${PORTSDIR}/audio/xmms LIB_DEPENDS+= xmms.1:${PORTSDIR}/audio/xmms .endif +ONLY_FOR_ARCHS= i386 + USE_LIBTOOL= yes USE_AUTOMAKE= yes USE_AUTOCONF= yes @@ -33,7 +35,11 @@ INSTALLS_SHLIB= yes post-install: .if !defined(NO_PORTDOCS) ${MKDIR} ${PREFIX}/share/doc/flac - ${CP} -R ${WRKSRC}/doc/ ${PREFIX}/share/doc/flac + ${MKDIR} ${PREFIX}/share/doc/flac/images + ${CP} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/flac +.for file in logo.jpg 1x1.gif + ${CP} ${WRKSRC}/doc/images/${file} ${PREFIX}/share/doc/flac/images +.endfor .endif .include <bsd.port.mk> diff --git a/audio/flac/distinfo b/audio/flac/distinfo index e53b5788cd37..c50d3a4a7ac4 100644 --- a/audio/flac/distinfo +++ b/audio/flac/distinfo @@ -1 +1 @@ -MD5 (flac-0.8-src.tar.gz) = dea10a5a180510d2cc76609e1510b9a0 +MD5 (flac-0.9-src.tar.gz) = 6b90c829c6224b43a3d304895bfd7d81 diff --git a/audio/flac/files/patch-configure.in b/audio/flac/files/patch-configure.in index 561fdd80b377..5b4870dad10f 100644 --- a/audio/flac/files/patch-configure.in +++ b/audio/flac/files/patch-configure.in @@ -1,7 +1,6 @@ -$FreeBSD$ ---- configure.in.orig Fri Feb 23 22:13:02 2001 -+++ configure.in Mon Mar 26 02:57:28 2001 -@@ -22,17 +22,18 @@ AM_CONDITIONAL(DEBUG, test x$debug = xtr +--- configure.in.orig Tue Apr 3 13:07:35 2001 ++++ configure.in Tue Apr 3 13:09:06 2001 +@@ -22,11 +22,11 @@ AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built])) AM_CONDITIONAL(XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x) @@ -9,17 +8,10 @@ $FreeBSD$ +CFLAGS="$CFLAGS -I./include -I \$(top_srcdir)/include" if test x$debug = xtrue; then - CFLAGS="$CFLAGS -g -O0 -DDEBUG" -+ CFLAGS="$CFLAGS -g -DDEBUG" ++ CFLAGS="$CFLAGS -g -DDEBUG" else - CFLAGS="$CFLAGS -O3 -fomit-frame-pointer -funroll-loops -ffast-math -finline-functions -DNDEBUG" + CFLAGS="$CFLAGS -DNDEBUG" fi AC_OUTPUT( Makefile \ - src/Makefile \ - src/libFLAC/Makefile \ - src/flac/Makefile \ -+ src/metaflac/Makefile \ - src/plugin_xmms/Makefile \ - src/test_streams/Makefile \ - src/test_unit/Makefile \ |