409995bd9e
- Chromaprint itself is now licensed MIT, but it still includes LGPL21 code - Add DOXYGEN option to build and install API docs - Add TEST option to build regression tests - API has changed, so some dependent ports needed to be patched (mostly taken from their respective upstream repositories) Changes: https://github.com/acoustid/chromaprint/blob/v1.4.2/NEWS.txt
31 lines
608 B
Makefile
31 lines
608 B
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libgroove
|
|
PORTVERSION= 4.3.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Audio dispatching library
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \
|
|
libchromaprint.so:audio/chromaprint \
|
|
libebur128.so:audio/libebur128 \
|
|
libspeexdsp.so:audio/speexdsp
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= andrewrk
|
|
|
|
USES= cmake:outsource
|
|
USE_SDL= sdl2
|
|
USE_LDCONFIG= yes
|
|
CFLAGS+= -Wno-error=deprecated-declarations # ffmpeg 3.1
|
|
|
|
PLIST_SUB+= VER1=${PORTVERSION:R:R} \
|
|
VER3=${PORTVERSION}
|
|
|
|
.include <bsd.port.mk>
|