1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

- Update to 0.32 [1]

- Improve COMMENT [1]
- Remove ABI version numbers from LIB_DEPENDS
- Convert Makefile headers to new style

PR:	ports/174210 [1]
Submitted by:	Stefan Rumetshofer <sterum@overrider.at> (maintainer)
This commit is contained in:
Alex Kozlov 2012-12-24 15:01:28 +00:00
parent f1fecbcf5b
commit 3aabffa58c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=309462
3 changed files with 8 additions and 23 deletions

View File

@ -1,21 +1,18 @@
# New ports collection makefile for: fusefs-mp3fs
# Date created: 18 Feb 2012
# Whom: Stefan Rumetshofer
# Created by: Stefan Rumetshofer
# $FreeBSD$
#
PORTNAME= mp3fs
PORTVERSION= 0.31
PORTVERSION= 0.32
CATEGORIES= sysutils audio
MASTER_SITES= https://github.com/downloads/khenriks/${PORTNAME}/
PKGNAMEPREFIX= fusefs-
MAINTAINER= sterum@overrider.at
COMMENT= FUSE-based filesystem for transcoding flac to mp3
COMMENT= FUSE-based filesystem for transcoding flac to mp3 on the fly
LIB_DEPENDS= mp3lame.0:${PORTSDIR}/audio/lame\
FLAC.10:${PORTSDIR}/audio/flac\
id3tag.0:${PORTSDIR}/audio/libid3tag
LIB_DEPENDS= mp3lame:${PORTSDIR}/audio/lame \
FLAC:${PORTSDIR}/audio/flac \
id3tag:${PORTSDIR}/audio/libid3tag
FETCH_CMD= fetch -Fpr

View File

@ -1,2 +1,2 @@
SHA256 (mp3fs-0.31.tar.gz) = fdfe1f4936f49191f55ac9546231ef26e4e99a8bfdf4f7a14122b57667ee9799
SIZE (mp3fs-0.31.tar.gz) = 105735
SHA256 (mp3fs-0.32.tar.gz) = 0b3d7064bf27b86a7f691684760f02126b5edab0108d65826c2a0f7f1a3eefd1
SIZE (mp3fs-0.32.tar.gz) = 120579

View File

@ -1,12 +0,0 @@
--- src/mp3fs.c 2012-02-18 20:55:29.000000000 +0100
+++ src/mp3fs.c 2012-02-17 21:06:13.000000000 +0100
@@ -38,6 +38,9 @@
#include "transcode.h"
+#define S_ISLNK(m) (((m) & 0170000) == 0120000) /* symbolic link */
+#define S_ISSOCK(m) (((m) & 0170000) == 0140000)
+
struct mp3fs_params params = {
.basepath = NULL,
.bitrate = 128,