mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Update to 4.32
PR: ports/95778 Submitted by: Jeffrey H. Johnson <CPE1704TKS@bellsouth.net>
This commit is contained in:
parent
04cb7987e3
commit
f996551ffe
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=159602
4 changed files with 8 additions and 29 deletions
|
@ -6,11 +6,9 @@
|
|||
#
|
||||
|
||||
PORTNAME= wavpack
|
||||
PORTVERSION= 4.2
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 4.32
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||
MASTER_SITE_SUBDIR= kwm
|
||||
MASTER_SITES= http://www.wavpack.com/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Compress (and restore) both 16 and 24-bit audio files in .wav format
|
||||
|
@ -18,7 +16,6 @@ COMMENT= Compress (and restore) both 16 and 24-bit audio files in .wav format
|
|||
GNU_CONFIGURE= yes
|
||||
USE_ICONV= yes
|
||||
USE_BZIP2= yes
|
||||
USE_REINPLACE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
|
@ -29,8 +26,8 @@ post-patch:
|
|||
@${REINPLACE_CMD} -e 's|libdir)/pkgconfig|prefix)/libdata/pkgconfig|g' \
|
||||
${WRKSRC}/Makefile.in
|
||||
.for i in ${FILES}
|
||||
@cd ${WRKSRC} && cp ${i} ${i}.orig && \
|
||||
@cd ${WRKSRC} && ${CP} ${i} ${i}.orig && \
|
||||
col < ${i}.orig > ${i}
|
||||
.endfor
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (wavpack-4.2.tar.bz2) = 702cf0492f97c83e35973944ec083ab8
|
||||
SHA256 (wavpack-4.2.tar.bz2) = 4bebc8e47371c701b17f7201e598da3eee8bdbe6c3179778bdbe797a525aea1d
|
||||
SIZE (wavpack-4.2.tar.bz2) = 278576
|
||||
MD5 (wavpack-4.32.tar.bz2) = e40ff238477c0007155bce4ada3f7eba
|
||||
SHA256 (wavpack-4.32.tar.bz2) = bb6374deb9b1091481c84d6bde57eb333a52bfbbb8ad002c11c17492c3faefa9
|
||||
SIZE (wavpack-4.32.tar.bz2) = 275586
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
--- utils.c.orig Sun Mar 20 08:16:38 2005
|
||||
+++ utils.c Mon Jul 11 13:25:37 2005
|
||||
@@ -613,6 +613,7 @@
|
||||
MultiByteToWideChar (CP_ACP, 0, string, -1, temp, max_chars + 1);
|
||||
WideCharToUTF8 (temp, (uchar *) string, len);
|
||||
#else
|
||||
+ iconv_t converter;
|
||||
char *temp = malloc (len);
|
||||
// memset(temp, 0, len);
|
||||
char *outp = temp;
|
||||
@@ -624,7 +625,7 @@
|
||||
|
||||
memset(temp, 0, len);
|
||||
old_locale = setlocale (LC_CTYPE, "");
|
||||
- iconv_t converter = iconv_open ("UTF-8", "");
|
||||
+ converter = iconv_open ("UTF-8", "");
|
||||
err = iconv (converter, &inp, &insize, &outp, &outsize);
|
||||
iconv_close (converter);
|
||||
setlocale (LC_CTYPE, old_locale);
|
|
@ -1,5 +1,6 @@
|
|||
bin/wavpack
|
||||
bin/wvunpack
|
||||
bin/wvgain
|
||||
include/wavpack/md5.h
|
||||
include/wavpack/unpack3.h
|
||||
include/wavpack/wavpack.h
|
||||
|
|
Loading…
Add table
Reference in a new issue