audio/deadbeef: update to 0.7.1
Also, drop some patches merged upstream. Reviewed by: mat Approved by: vg (maintainer) via IRC Differential Revision: D5676
This commit is contained in:
parent
6e6281f2c5
commit
e906b9875a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=411671
4 changed files with 4 additions and 27 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= deadbeef
|
||||
PORTVERSION= 0.7.0
|
||||
PORTVERSION= 0.7.1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/${PORTNAME}/
|
||||
|
||||
|
@ -20,8 +20,7 @@ CONFIGURE_ARGS= --disable-alsa --disable-nullout --disable-static
|
|||
CPPFLAGS+= -I../dumb/dumb-kode54/include -I../../plugins/libmp4ff \
|
||||
-I../../plugins/gme/game-music-emu-0.6pre \
|
||||
-I./sidplay-libs/libsidplay/include/sidplay \
|
||||
-I${LOCALBASE}/include \
|
||||
-D__POSIX_VISIBLE
|
||||
-I${LOCALBASE}/include
|
||||
LIBS+= -L${LOCALBASE}/lib -lexecinfo -lintl
|
||||
USE_GNOME= intltool
|
||||
INSTALLS_ICONS= yes
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (deadbeef-0.7.0.tar.bz2) = 1dab69d00695b830724dfd8aa38f5cab851dbd02a3d95bce8b7720fdc38dd868
|
||||
SIZE (deadbeef-0.7.0.tar.bz2) = 4765372
|
||||
SHA256 (deadbeef-0.7.1.tar.bz2) = dc7f9e124d98baa77af2648e86ac807dc458f33b72d0792fb8be206e95085734
|
||||
SIZE (deadbeef-0.7.1.tar.bz2) = 4764841
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
--- plugins/artwork/artwork_internal.h.orig 2015-07-15 07:06:25 UTC
|
||||
+++ plugins/artwork/artwork_internal.h
|
||||
@@ -24,6 +24,7 @@
|
||||
#ifndef __ARTWORK_INTERNAL_H
|
||||
#define __ARTWORK_INTERNAL_H
|
||||
|
||||
+#include <limits.h>
|
||||
#include "../../deadbeef.h"
|
||||
|
||||
#define min(x,y) ((x)<(y)?(x):(y))
|
|
@ -1,12 +0,0 @@
|
|||
--- plugins/artwork/cache.c.orig 2016-01-02 20:28:08 UTC
|
||||
+++ plugins/artwork/cache.c
|
||||
@@ -160,7 +160,8 @@ cache_cleaner_thread(void *none)
|
||||
usleep(100000);
|
||||
deadbeef->mutex_lock(thread_mutex);
|
||||
}
|
||||
- closedir(covers_dir);
|
||||
+ if (covers_dir)
|
||||
+ closedir(covers_dir);
|
||||
|
||||
/* Sleep until just after the oldest file expires */
|
||||
if (cache_expiry_seconds > 0 && !terminate) {
|
Loading…
Reference in a new issue