View | Details | Raw Unified | Return to bug 189725 | Differences between
and this patch

Collapse All | Expand All

(-)fusefs-mp3fs/Makefile (-6 / +6 lines)
Lines 2-19 Link Here
2
# $FreeBSD: head/sysutils/fusefs-mp3fs/Makefile 343745 2014-02-11 14:13:56Z miwi $
2
# $FreeBSD: head/sysutils/fusefs-mp3fs/Makefile 343745 2014-02-11 14:13:56Z miwi $
3
3
4
PORTNAME=	mp3fs
4
PORTNAME=	mp3fs
5
PORTVERSION=	0.32
5
PORTVERSION=	0.9
6
PORTREVISION=	1
6
PORTEPOCH=	1
7
CATEGORIES=	sysutils audio
7
CATEGORIES=	sysutils audio
8
MASTER_SITES=	https://github.com/downloads/khenriks/${PORTNAME}/
8
MASTER_SITES=	https://github.com/khenriks/${PORTNAME}/releases/download/v${PORTVERSION}/
9
PKGNAMEPREFIX=	fusefs-
9
PKGNAMEPREFIX=	fusefs-
10
10
11
MAINTAINER=	sterum@overrider.at
11
MAINTAINER=	sterum@overrider.at
12
COMMENT=	FUSE-based filesystem for transcoding flac to mp3 on the fly
12
COMMENT=	FUSE-based filesystem for transcoding flac to mp3 on the fly
13
13
14
LIB_DEPENDS=	mp3lame:${PORTSDIR}/audio/lame \
14
LIB_DEPENDS=	libmp3lame.so:${PORTSDIR}/audio/lame \
15
		FLAC:${PORTSDIR}/audio/flac \
15
		libFLAC.so:${PORTSDIR}/audio/flac \
16
		id3tag:${PORTSDIR}/audio/libid3tag
16
		libid3tag.so:${PORTSDIR}/audio/libid3tag
17
17
18
FETCH_CMD=	fetch -Fpr
18
FETCH_CMD=	fetch -Fpr
19
19
(-)fusefs-mp3fs/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (mp3fs-0.32.tar.gz) = 0b3d7064bf27b86a7f691684760f02126b5edab0108d65826c2a0f7f1a3eefd1
1
SHA256 (mp3fs-0.9.tar.gz) = 2f5f7e45ff73d9a16b6c1173cdefb4a4b37f5d141acc360161168af27a821b18
2
SIZE (mp3fs-0.32.tar.gz) = 120579
2
SIZE (mp3fs-0.9.tar.gz) = 145118
(-)fusefs-mp3fs/files/patch-src-transcode.c (-10 lines)
Lines 1-10 Link Here
1
--- src/transcode.c	2012-05-01 22:12:48.000000000 +0200
2
+++ src/transcode.c	2013-06-15 19:19:13.000000000 +0200
3
@@ -21,6 +21,7 @@
4
 
5
 #define _GNU_SOURCE
6
 
7
+#include <inttypes.h>
8
 #include <stdio.h>
9
 #include <string.h>
10
 #include <unistd.h>

Return to bug 189725