1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-23 20:51:43 +00:00

upgrade to 0.9

only for i386

Submitted by:	Christian Weisgerber <naddy@mips.inka.de> (for "i386 only")
This commit is contained in:
Ying-Chieh Liao 2001-04-03 06:18:48 +00:00
parent cb30289b5b
commit 292b563b17
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=40790
3 changed files with 13 additions and 15 deletions

View File

@ -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>

View File

@ -1 +1 @@
MD5 (flac-0.8-src.tar.gz) = dea10a5a180510d2cc76609e1510b9a0
MD5 (flac-0.9-src.tar.gz) = 6b90c829c6224b43a3d304895bfd7d81

View File

@ -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 \