summaryrefslogtreecommitdiff
path: root/audio/fplib/Makefile
blob: 55ee84981018c176d8a24cf32fc21094c6a747ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# New ports collection makefile for:	fplib
# Date created:		2011-11-12
# Whom:			Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	fplib
PORTVERSION=	20100712
PORTREVISION=	1
CATEGORIES=	audio
MASTER_SITES=	LOCAL/sunpoet

MAINTAINER=	sunpoet@FreeBSD.org
COMMENT=	Last.fm fingerprint library

LIB_DEPENDS=	curl:${PORTSDIR}/ftp/curl \
		fftw3:${PORTSDIR}/math/fftw3 \
		fftw3f:${PORTSDIR}/math/fftw3-float \
		mad:${PORTSDIR}/audio/libmad \
		samplerate:${PORTSDIR}/audio/libsamplerate \
		tag:${PORTSDIR}/audio/taglib

CPPFLAGS+=	-I${LOCALBASE}/include
USE_CMAKE=	yes
USE_LDCONFIG=	yes
USE_XZ=		yes

PLIST_FILES=	bin/lastfmfpclient \
		lib/liblastfmfp.a \
		lib/liblastfmfp.so \
		lib/liblastfmfp.so.1 \
		lib/liblastfmfp.so.1.6.0

post-patch:
	@${REINPLACE_CMD} \
		-e 's|\(ADD_DEFINITIONS\)(.*)|\1(${CFLAGS} ${CPPFLAGS})|' \
		-e 's|\(OUTPUT_NAME lastfmfp\)_static|\1|' \
			${WRKSRC}/fplib/CMakeLists.txt
	@${REINPLACE_CMD} \
		-e 's|\(ADD_DEFINITIONS\)(.*)|\1(${CFLAGS} ${CPPFLAGS})|' \
		-e 's|^\(LINK_DIRECTORIES\)(.*)|\1(${LOCALBASE}/lib)|' \
		-e 's| lastfmfp_static| lastfmfp_shared|' \
			${WRKSRC}/lastfmfpclient/CMakeLists.txt

.include <bsd.port.mk>