Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Jul 2020 05:41:12 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r543710 - in head/audio: . bliss bliss/files
Message-ID:  <202007300541.06U5fC6D019885@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Thu Jul 30 05:41:12 2020
New Revision: 543710
URL: https://svnweb.freebsd.org/changeset/ports/543710

Log:
  New port: audio/bliss: Multithreaded C library used to compute distance between songs

Added:
  head/audio/bliss/
  head/audio/bliss/Makefile   (contents, props changed)
  head/audio/bliss/distinfo   (contents, props changed)
  head/audio/bliss/files/
  head/audio/bliss/files/patch-CMakeLists.txt   (contents, props changed)
  head/audio/bliss/pkg-descr   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Thu Jul 30 05:16:00 2020	(r543709)
+++ head/audio/Makefile	Thu Jul 30 05:41:12 2020	(r543710)
@@ -58,6 +58,7 @@
     SUBDIR += beets
     SUBDIR += bharvestr-lv2
     SUBDIR += bjumblr-lv2
+    SUBDIR += bliss
     SUBDIR += blop
     SUBDIR += blop-lv2
     SUBDIR += bristol

Added: head/audio/bliss/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/bliss/Makefile	Thu Jul 30 05:41:12 2020	(r543710)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	bliss
+DISTVERSION=	1.2.0.20200615
+CATEGORIES=	audio
+PKGNAMESUFFIX=	-music-analyzer
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Multithreaded C library used to compute distance between songs
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	libavcodec.so:multimedia/ffmpeg \
+		libfftw3.so:math/fftw3
+
+USES=		cmake pkgconfig
+USE_GITHUB=	yes
+GH_ACCOUNT=	Polochon-street
+GH_TAGNAME=	fa6c62588df645b5ccee53207efc6a0d9a303b3a
+USE_LDCONFIG=	yes
+
+PLIST_FILES=	include/bliss.h \
+		lib/libbliss.so
+
+.include <bsd.port.mk>

Added: head/audio/bliss/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/bliss/distinfo	Thu Jul 30 05:41:12 2020	(r543710)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1596086046
+SHA256 (Polochon-street-bliss-1.2.0.20200615-fa6c62588df645b5ccee53207efc6a0d9a303b3a_GH0.tar.gz) = 71985ade63fcf9ab1e0f732df6a2b69d25b790119d3eb997000edd510438920b
+SIZE (Polochon-street-bliss-1.2.0.20200615-fa6c62588df645b5ccee53207efc6a0d9a303b3a_GH0.tar.gz) = 3734783

Added: head/audio/bliss/files/patch-CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/bliss/files/patch-CMakeLists.txt	Thu Jul 30 05:41:12 2020	(r543710)
@@ -0,0 +1,13 @@
+--- CMakeLists.txt.orig	2020-07-30 05:15:51 UTC
++++ CMakeLists.txt
+@@ -93,8 +93,8 @@ set_tests_properties(ctest_run_test_decode PROPERTIES 
+ ###################
+ # Install targets #
+ ###################
+-install(TARGETS bliss DESTINATION /usr/lib)
+-install(FILES include/bliss.h DESTINATION /usr/include)
++install(TARGETS bliss DESTINATION lib)
++install(FILES include/bliss.h DESTINATION include)
+ 
+ ##############
+ # Generators #

Added: head/audio/bliss/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/bliss/pkg-descr	Thu Jul 30 05:41:12 2020	(r543710)
@@ -0,0 +1,8 @@
+Bliss music library is a multithreaded C library used to compute distance
+between songs. It is especially usable through MPD with Blissify. It is can be
+useful for creating "intelligent" playlists and/or continuous play, a la
+Spotify/Grooveshark Radio.
+
+Bliss is really useful when used as a plug-in for audio players.
+
+WWW: https://github.com/Polochon-street/bliss



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007300541.06U5fC6D019885>