diff options
author | krion <krion@FreeBSD.org> | 2004-02-23 08:35:53 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-02-23 08:35:53 +0800 |
commit | 0ed5df1cebac878e5fbf5040fd5c919eb395577f (patch) | |
tree | cbe32c9a9fbe32acf4e1ef8beafedb42dbbc6f5f /audio/mp3splt | |
parent | 78d42c8e32df9fb7c17bd48308b293e44e7bea0d (diff) | |
download | freebsd-ports-gnome-0ed5df1cebac878e5fbf5040fd5c919eb395577f.tar.gz freebsd-ports-gnome-0ed5df1cebac878e5fbf5040fd5c919eb395577f.tar.zst freebsd-ports-gnome-0ed5df1cebac878e5fbf5040fd5c919eb395577f.zip |
- The author included files/patch-mp3.c to software and
rerolled the tarball
- Fix typo in CONFIGURE_TARGET
- Bump PORTREVISION
PR: ports/63163
Submitted by: maintainer
Diffstat (limited to 'audio/mp3splt')
-rw-r--r-- | audio/mp3splt/Makefile | 6 | ||||
-rw-r--r-- | audio/mp3splt/distinfo | 4 | ||||
-rw-r--r-- | audio/mp3splt/files/patch-mp3.c | 14 |
3 files changed, 4 insertions, 20 deletions
diff --git a/audio/mp3splt/Makefile b/audio/mp3splt/Makefile index 338ec900de1f..e0a092a7b24e 100644 --- a/audio/mp3splt/Makefile +++ b/audio/mp3splt/Makefile @@ -7,7 +7,7 @@ PORTNAME= mp3splt PORTVERSION= 2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,8 +16,6 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-src MAINTAINER= q@uni.de COMMENT= Utility to split mp3 and ogg files (via CUE sheets) -BROKEN= "Does not fetch" - LIB_DEPENDS= mad.2:${PORTSDIR}/audio/mad \ vorbis.3:${PORTSDIR}/audio/libvorbis \ ogg.5:${PORTSDIR}/audio/libogg @@ -25,7 +23,7 @@ LIB_DEPENDS= mad.2:${PORTSDIR}/audio/mad \ GNU_CONFIGURE= yes CONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" \ CFLAGS="${CFLAGS} -I${LOCALBASE}/include" -CONFIGURE_TARGET:= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} diff --git a/audio/mp3splt/distinfo b/audio/mp3splt/distinfo index 8efbc7512379..7b6efe87bc01 100644 --- a/audio/mp3splt/distinfo +++ b/audio/mp3splt/distinfo @@ -1,2 +1,2 @@ -MD5 (mp3splt-2.0-src.tar.gz) = c092e4f4c1c9f12c83998b39bfe6138a -SIZE (mp3splt-2.0-src.tar.gz) = 130025 +MD5 (mp3splt-2.0-src.tar.gz) = 2dadcfac92dd776d7bbc3e15e28b21bd +SIZE (mp3splt-2.0-src.tar.gz) = 130041 diff --git a/audio/mp3splt/files/patch-mp3.c b/audio/mp3splt/files/patch-mp3.c deleted file mode 100644 index 1fb687739581..000000000000 --- a/audio/mp3splt/files/patch-mp3.c +++ /dev/null @@ -1,14 +0,0 @@ ---- mp3.c.orig Sun Feb 1 09:28:27 2004 -+++ mp3.c Sun Feb 1 09:29:11 2004 -@@ -529,9 +529,10 @@ - { - while (state->bytes < begin) - { -+ off_t to_read; - if (feof(state->file_input)) - return -1; -- off_t to_read = (begin - state->bytes); -+ to_read = (begin - state->bytes); - if (to_read > MAD_BSIZE) - to_read = MAD_BSIZE; - if ((state->data_len = fread(state->inputBuffer, 1, to_read, state->file_input))<=0) |