1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

Update to 0.13

PR:		ports/48142
Submitted by:	KATO Tsuguru <tkato@prontomail.com>
This commit is contained in:
Patrick Li 2003-02-10 21:38:47 +00:00
parent 44ed515b4f
commit 75f824b2c5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=75263
3 changed files with 19 additions and 9 deletions

View File

@ -7,7 +7,7 @@
#
PORTNAME= darkice
PORTVERSION= 0.12
PORTVERSION= 0.13
CATEGORIES= audio net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -27,13 +27,7 @@ CONFIGURE_ARGS= --with-lame-prefix=${LOCALBASE} \
MAN1= darkice.1
MAN5= darkice.cfg.5
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 5000000
USE_GCC= 3.1
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (darkice-0.12.tar.gz) = a28af863edaab12366a5b66b167b8fd6
MD5 (darkice-0.13.tar.gz) = ddf0df78db85278eac4964d7c15ce3ea

View File

@ -0,0 +1,16 @@
--- src/OssDspSource.cpp.orig Sun Jan 26 18:48:57 2003
+++ src/OssDspSource.cpp Mon Feb 10 21:40:43 2003
@@ -86,6 +86,13 @@
#error need sys/soundcard.h
#endif
+#if defined(__FreeBSD__)
+#if defined(__sparc__) || defined(__powerpc__)
+#define AFMT_S16_NE AFMT_S16_BE
+#else
+#define AFMT_S16_NE AFMT_S16_LE
+#endif
+#endif
#include "Util.h"
#include "Exception.h"