aboutsummaryrefslogtreecommitdiffstats
path: root/audio/acoustid-fingerprinter/Makefile
blob: ebc084de198dbd695cf41b116ae8afc13b86b3eb (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
# $FreeBSD$

PORTNAME=   acoustid-fingerprinter
PORTVERSION=    0.6
PORTREVISION=   6
CATEGORIES= audio

MAINTAINER= jhale@FreeBSD.org
COMMENT=    AcoustID audio fingerprint submission tool

LICENSE=    GPLv2
LICENSE_FILE=   ${WRKSRC}/COPYING.txt

LIB_DEPENDS=    libchromaprint.so:audio/chromaprint \
        libtag.so:audio/taglib \
        libavcodec.so:multimedia/ffmpeg

BROKEN_armv6=       fails to link: fingerprintcalculator.cpp: undefined reference to 'chromaprint_new'
BROKEN_powerpc64=   fails to compile: libchromaprint.so: undefined reference to std::__cxx11::basic_string

USES=       cmake desktop-file-utils
USE_QT4=    corelib gui network \
        qmake_build moc_build rcc_build uic_build
USE_GITHUB= yes
GH_ACCOUNT= acoustid
GH_TAGNAME= 632e879

INSTALLS_ICONS= yes

post-patch:
    @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
         ${WRKSRC}/cmake/modules/*.cmake

post-install:
.for i in 16 24 32 48 128 256
    @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps
    ${INSTALL_DATA} ${WRKSRC}/images/acoustid-fp-${i}.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps/acoustid-fingerprinter.png
.endfor
    @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
    ${INSTALL_DATA} ${WRKSRC}/images/acoustid-fingerprinter.svg ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps

.include <bsd.port.mk>